- 浏览: 5679 次
- 性别:
- 来自: 深圳
文章列表
转载自:http://blog.csdn.net/kenchow126/article/details/7967412
今天学习了thinking in java ,看了不定长的参数,记录下来以备用到时候找不到,以下是string类型的,其他类型的一样
public class OptionalTrailingArguments {
static void f(int required, String... trailing) {
System.out.print("required: " + required + " &quo ...
在Java中,哈希码代表了对象的一种特征,例如我们判断某两个字符串是否==,如果其哈希码相等,则这两个字符串内容相同。其次,哈希码是一种数据结构的算法。常见的哈希码的算法有:
1:Object类的hashCode.返回对象的内存地址经过处理后的结构,由于每个对象的内存地址都不一样,所以哈希码也不一样。
2:String类的hashCode.根据String类包含的字符串的内容,根据一种特殊算法返回哈希码,只要字符串内容相同,返回的哈希码也相同。
3:Integer类,返回的哈希码就是Integer对象里所包含的那个整数的数值,例如Integer i1=new Integer(100),i1. ...
第一种方法很简单,在Eclipse的主目录(%ECLIPSE_HOME%)下有一个plugins目录和features目录。将插件解压缩后,在解压缩后的文件夹里一般可以看到plugins文件夹,有的插件解压缩后还可以看到一个features文件夹。一般将plugins文件 ...
eclipse中启动tomcat时所报错误:
信息: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path
解决办法:
在tomcat安装目录的bin目录下,找到tcnative-1.dll,把该文件拷贝到C盘system32目录下,重启eclipse,问题解决!!!
方法一:复制cmd.exe文件
首先找到cmd.exe文件(C:\WINDOWS\system32\),将其复制到你所需要的路径下面,双击打开后其默认路径便是现在的路径了。
我个人认为这个方法对于java编程是最方便的,而且 ...
oracle merge使用方法
oracle merge语法
merge into biz_module_apccode o
using (select * from temp_fa) n
on (o.biz_module_id=142 and o.apccode_id=n.apccode_id)
when matched then
update set o.order_by=n.order_by
/////////////////////////////////////////////////////
Oracle9i引入了MERGE命令,你能够在一个SQL语句中对一个表同时执行 ...