上一页 1 ··· 56 57 58 59 60 61 62 63 64 ··· 72 下一页
摘要: package test.面试题; public class Test7 { public static void main(String[] args){ /** 1 1 1 1 2 1 1 3 3 1 1 4 6 4 ... 阅读全文
posted @ 2016-06-01 13:42 guodaxia 阅读(369) 评论(0) 推荐(0) 编辑
摘要: package test.面试题; public class Test1 { public static void main(String[] args){ byte b1=3,b2=4,b; /* b=b1+b2; 因为在进行运算之前会进行类型的提升,将两个byte都转化成为int进行运算,所以得到的值是int型... 阅读全文
posted @ 2016-06-01 13:41 guodaxia 阅读(160) 评论(0) 推荐(0) 编辑
摘要: package com.Integer; public class Study01 { /** * 对象包装类的引入 * 基本数据类型没有什么方法,操作它的话比较麻烦,所以一般使用它的包装类进行操作 * int Integer * byte Byte * short Short * long Long ... 阅读全文
posted @ 2016-06-01 13:37 guodaxia 阅读(175) 评论(0) 推荐(0) 编辑
摘要: package com.Arrays; import java.util.Arrays; import java.util.List; public class Study01 { /** * java.util 需要导入包 主要用来操作数组,排序和搜索 * * 没有构造方法,所有方法都是static修饰 方法: asList(T... a) 返回受数... 阅读全文
posted @ 2016-06-01 13:36 guodaxia 阅读(176) 评论(0) 推荐(0) 编辑
摘要: package com.String; import java.util.Scanner; public class StringTest { public static void main(String[] args){ StringTest st=new StringTest(); st.pjS 阅读全文
posted @ 2016-06-01 13:35 guodaxia 阅读(155) 评论(0) 推荐(0) 编辑
摘要: package com.Math; public class Study01 { public static void main(String[] args){ Study01 s=new Study01(); s.textAbs(-0.8); s.textCeil(0.4); s.textFloor(0.9); ... 阅读全文
posted @ 2016-06-01 13:33 guodaxia 阅读(129) 评论(0) 推荐(0) 编辑
摘要: package com.Object; public class Test01{ public static void main(String[] args){ Test01 ts=new Test01(); ts.textEquals(); Student s=new Student(); }... 阅读全文
posted @ 2016-06-01 13:32 guodaxia 阅读(176) 评论(0) 推荐(0) 编辑
摘要: package com.Scanner; import java.util.Scanner; public class Study01 { public static void main(String[] args){ Scanner input=new Scanner(System.in); //System.out.println(input.ha... 阅读全文
posted @ 2016-06-01 13:31 guodaxia 阅读(209) 评论(0) 推荐(0) 编辑
摘要: package com.renjicaiquan.entity; public class Computer { private String name; private int score; public String getName() { return name; } public void 阅读全文
posted @ 2016-05-30 21:36 guodaxia 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 生成doc帮助文档。 第一步,需要有一个java类,里面封装了各种方法 第二部,给类和方法添加注释文档 注释文档格式: /** * */ @author 作者 @version 版本 @return 返回 @param arr 传入参数名为arr 第三部: 进入dom窗口,cd跳入java文件的文件 阅读全文
posted @ 2016-05-27 19:11 guodaxia 阅读(635) 评论(0) 推荐(0) 编辑
上一页 1 ··· 56 57 58 59 60 61 62 63 64 ··· 72 下一页