javase第三章
cobolchao
这个作者很懒,什么都没留下…
展开
-
java产生随机数
//产生随机数 double [0,1) double rnd = Math.random();//随机整数 [0,100) int num = (int)(rnd*100); //注意()作用范围//[0,100] num = (int)(rnd*101); //注意()作用范围2014-02-19 10:31:46 · 90 阅读 · 0 评论 -
与键盘交互
import java.util.Scanner; Scanner console =new Scanner(System.in); int a = console.nextInt();1、获取输入整数 nextInt()2、获取输入浮点数 nextDouble()3、获取字符串 nextLine() 见好就收 见到回车就停止 如果之前存在 nextInt() nextDo...2014-02-19 10:33:38 · 185 阅读 · 0 评论 -
switch
1、表达式 :不能为boolean类型的,只能为整数|1.5枚举|1.7字符串2、case位置不定,按需要编写3、default 位置不定,按需要编写,建议写在最后4、switch结束 1)、正常结束 2)、break 5、break 结束switch ,防止下穿 ,穿透不一定错误,利用穿透switch(weekDay){ case 1: day ="星期一"; break;...原创 2014-02-19 15:22:06 · 91 阅读 · 0 评论 -
作用域
public static void main(String[] args){ int num =0; //num生效 ,在从属块中都可见 { //匿名块 int a =0; //a生效 //int num; //重复声明,编译错误 } //a结束 int a =20; //int num =1; //一个块中,变量不能重复声明 } ...原创 2014-02-20 09:43:42 · 65 阅读 · 0 评论 -
java方法细节
一、方法的签名: 唯一 在同一个类中方法签名唯一 方法的签名: 方法名 +形参列表(类型 个数 顺序) 与 修饰符 、返回值类型|void 形参名 无关例如:public static int pow(int p,int n) public static int pow(int n,int p)//签名重复: pow(int ,int)public static int po...原创 2014-02-20 15:21:29 · 125 阅读 · 0 评论