上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页
摘要: Example4_9.java MobileTelephone.java SIM.java 阅读全文
posted @ 2016-10-23 16:52 我有一壶酒 阅读(490) 评论(0) 推荐(0) 编辑
摘要: 基本数据类型参数的传值,参数为基本数据类型 引用类型参数传值,参数为一个类 Battery.java Example4_7.java Radio.java 阅读全文
posted @ 2016-10-23 16:46 我有一壶酒 阅读(254) 评论(0) 推荐(0) 编辑
摘要: class XiyoujiRenwu { float height,weight; String head, ear; void speak(String s) { head="歪着头"; System.out.println(s); } } public class Example4_3 { public static ... 阅读全文
posted @ 2016-10-23 16:38 我有一壶酒 阅读(301) 评论(0) 推荐(0) 编辑
摘要: class Point { int x,y; Point(int a,int b) { x=a; y=b; } } public class Example4_2 { public static void main(String args[]) { Point p1,p2; //声明对象p1和p... 阅读全文
posted @ 2016-10-23 16:34 我有一壶酒 阅读(170) 评论(0) 推荐(0) 编辑
摘要: class XiyoujiRenwu { float height,weight; String head, ear; void speak(String s) { System.out.println(s); } } public class Example4_1 { public static void main(String... 阅读全文
posted @ 2016-10-23 16:30 我有一壶酒 阅读(177) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; class Example2_5 { public static void main(String args[]) { int start=0,end,middle; int a[] = {12,45,67,89,123,-45,67}; int N = a.length; for(int i=0; i... 阅读全文
posted @ 2016-10-23 16:18 我有一壶酒 阅读(4876) 评论(0) 推荐(0) 编辑
摘要: 数组属于应用型变量,因此两个相投类型的数组如果具有相同的引用,它们就有完全相同的元素 如: int a[]={1,2,3},b[]={4,5} 如果a=b;则a[]={4,5} 阅读全文
posted @ 2016-10-23 16:16 我有一壶酒 阅读(4794) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-10-23 16:09 我有一壶酒 阅读(471) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Example2_3 { public static void main (String args[ ]){ System.out.println("请输入若干个数,每输入一个数回车确认"); System.out.println("最后输入数字0结束输入操作"); ... 阅读全文
posted @ 2016-10-23 16:05 我有一壶酒 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 分别用类型转换来显示一些字符在Unicode表中的位置,以及Unicode表中某些位置上的字符 阅读全文
posted @ 2016-10-23 15:59 我有一壶酒 阅读(223) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页