最新回答 / qq_飞飞飞_1
public class aa { public static void main(String[]args){ int n=53; int count=0; System.out.println("加分前成绩:"+n); for (;n<60;){ n=n+1; count++; ...
2016-03-07
最赞回答 / Geek丶
明明可以自己动手的啊,何必问呢public class HelloWorld { public static void main(String[] args) { String age="成年"; String a="未成年"; if(age==a){ System.out.println("成年"); }else{ System.out.println("未成年"); } }}
2016-03-07
已采纳回答 / 一条小咸鱼
public void println(String x) { synchronized (this) { print(x); //打印字符串,没有字符串就只用来换行 newLine(); //换行 } }也就是,println的参数是一个字符串。而多个String可以用+号连接成一个新的String,单独用基本数据类型会自动装箱成一个对应的包装类对象,对象将调用toString方法,返回一个String。不过没有覆...
2016-03-07
最赞回答 / racall
API(Application Programming Interface,应用程序编程接口)是一些预先定义的函数或者类、方法,目的是提供应用程序与开发人员基于某软件或硬件得以访问一组例程的能力,而又无需访问源码,或理解内部工作机制的细节。
2016-03-07