摘要: 第十二章 无参和有参 无参方法 public 返回值 方法名(){ //方法体 } 注意: 如果没有返回值,那么返回值类型是void. 如果有返回值,那么必须用return 返回值,并且该值的数据类型必须是定义方法 时的数据类型. return的作用: a.返回值 b.结束方法.(与break类似) 2.写方法时注意... 阅读全文
posted @ 2017-06-08 20:31 孤独患者xy 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 第九章 循环练习 public class *** { public static void main(String[] args) { Scanner input = new Scanner(System.in); int xy=0; System.out.println("请输入等腰三角形的行数:"); xy = i... 阅读全文
posted @ 2017-06-08 09:09 孤独患者xy 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 十四章 1.方法定义 public 返回值类型 方法名(参数类型1 参数名1,参数类型2 参数名2···){ //方法体 } 2.有参数的调用 a.如果同一个类中,方法可以直接调用。 b.如果是不同的类,方法必须通过对象调用, 对象名,方法名(实参1,实参2···); ... 阅读全文
posted @ 2017-06-08 09:03 孤独患者xy 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 第十五章 字符串 1.字符串(String)的定义 String str="内容"; String str=new String(); //内容为null String str=new String("内容"); 2.java.lang.* 字符串所在的包是java.lang. 注意:所有在java.l... 阅读全文
posted @ 2017-06-08 08:56 孤独患者xy 阅读(361) 评论(0) 推荐(0) 编辑