上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: package org.hanqi.thread; public class Test1 { public static void main(String[] args) { // for(int i=0;i<10;i++) // { // System.out.println(i); // ... 阅读全文
posted @ 2016-03-15 15:42 什么玩楞啊,我叫旺仔 阅读(113) 评论(0) 推荐(0) 编辑
摘要: package org.hanqi.array; import java.util.*; public class ZuoYe1 { public static void main(String[] args) { //产生验证码 0--9,a--z,A--Z随机取四个数作为索引值产生验证码 Lis 阅读全文
posted @ 2016-03-12 09:48 什么玩楞啊,我叫旺仔 阅读(525) 评论(0) 推荐(0) 编辑
摘要: package wanzai; import java.util.*; public class Suijishu { public static void main(String[] args) { String str="abcdefghijklmnopqrstuvwxyzABCDEFGHIJK 阅读全文
posted @ 2016-03-12 09:45 什么玩楞啊,我叫旺仔 阅读(235) 评论(0) 推荐(0) 编辑
摘要: package org.hanqi.array; import java.util.*; public class Test3 { public static void main(String[] args) { // TODO 自动生成的方法存根 Map<String,String> m=new 阅读全文
posted @ 2016-03-11 15:26 什么玩楞啊,我叫旺仔 阅读(151) 评论(0) 推荐(0) 编辑
摘要: package org.hanqi.array; import java.util.*; public class Test2 { public static void main(String[] args) { //哈希 Set<String> s=new HashSet<String>(); H 阅读全文
posted @ 2016-03-11 15:24 什么玩楞啊,我叫旺仔 阅读(170) 评论(0) 推荐(0) 编辑
摘要: package org.hanqi.array; import java.util.*; public class Test1 { public static void main(String[] args) { //创建List //1.指明数据类型,不需要指定大小 //<>表示泛型 List<S 阅读全文
posted @ 2016-03-11 15:22 什么玩楞啊,我叫旺仔 阅读(186) 评论(0) 推荐(0) 编辑
摘要: package org.hanqi.array; public class BaoZhuang { public static void main(String[] args) { //包装类 Long l=new Long(100); Long l1=new Long("1000"); Strin 阅读全文
posted @ 2016-03-11 15:10 什么玩楞啊,我叫旺仔 阅读(128) 评论(0) 推荐(0) 编辑
摘要: package wanzai; public class Fruit { private static Fruit color=null; private Fruit() { } public static Fruit getcolor(){ if(color==null){ color=new F 阅读全文
posted @ 2016-03-08 08:14 什么玩楞啊,我叫旺仔 阅读(222) 评论(0) 推荐(0) 编辑
摘要: private int age; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSex() { return sex; 阅读全文
posted @ 2016-03-08 08:10 什么玩楞啊,我叫旺仔 阅读(336) 评论(0) 推荐(0) 编辑
摘要: public class JiSuanQi { //整形加法 public int add(int a,int b) { return a+b; } //重载 参数个数不同 public double add(int c,int d,int e) { return c+d+e; } //浮点型加法 阅读全文
posted @ 2016-03-07 16:43 什么玩楞啊,我叫旺仔 阅读(236) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页