11 2014 档案
摘要:ggggggggggggggggggggg
阅读全文
摘要:1 import java.util.*; 2 import java.io.*; 3 4 public class Loop { 5 6 static Scanner console = new Scanner(System.in); 7 8 public ...
阅读全文
摘要:Although it need not be, the expression is usually an identifier. Whether it is an identifieror an expression, the value of the identifier or the expr...
阅读全文
摘要:与声明一个primitive variable不同,声明一个对象的时候,并不创建用来存储一个对象的内存空间,而是创建了一个存储该对象所在内存空间的地址。在java里,new是一个操作符,它让系统分配一个特定类型的存储空间,并返回该内存空间的地址。String str;str = “Java Prog...
阅读全文