package test;
import java.util.HashMap;
import java.util.HashSet;
//如果累的名字不在包里头,那就要import
/*
* import xxx.* 引用所有文件
*
* */
//对于容器类foreach循环也是可以用的
class A{
// String[]里头是String的管理者
private int i;
private String[] SA = new String[100];
// 只要类中定义了tostring函数在调用println(对象名称)时会自动调用tostring函数
public String toString()
{
return ""+i;
}
}
//integer character double
//一个.java文件(编译单元)里头只能有一个public类 其他的应该定义为friendly
public class Test {//文件名应该跟累的名字相同,因为类是public类型
//全名为test.Test
//private 的私有是对于类的私有 同一个类的不同对象可以相互访问私有变量
private HashMap<String, Integer> HM = new HashMap<String,Integer>();
// 包裹类型的变量可以直接接受基本类型的变量
public void puts(int id,String s)
{
// 通过keyset.set访问HashMap的关键字的数量
// 通过keyset中的关键字来遍历HashMap
}
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(Integer.MAX_VALUE);
System.out.println(Integer.SIZE);
// 显示这个数字二进制数中有几个1
System.out.println(Integer.bitCount(3));
// 第一位大返回1,第二位大返回-1
System.out.println(Integer.compare(10, 19));
System.out.println(Integer.MIN_VALUE);
System.out.println(Integer.compareUnsigned(-9, -9));
Double i = new Double(0);
Integer j = new Integer(12);
Float w = new Float(12.7);
int a;
HashSet<String> hs = new HashSet<String>();
hs.add("1231");
hs.add("1231");
hs.add("12");
System.out.println(hs);
hs.size();
}
}