扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
例1.1
Integer i = 10; int j = i; |
例2.1
String[] names = {"BadBoy","GoodBoy","HappyGirl","sadGirl"}; for(String option: names) { System.out.println(option); } |
import java.util.*; ArrayList animals = new ArrayList(); animals.add("Dog"); animals.add("Cat"); animals.add("Chick"); animals.add("Cow"); for(String option : animals) { System.out.println(option); } |
例3.1
定义:
public int sum(int... n) { //传过来n为一个int型数组 int tempSum; for(int option : n) { tempSum+=option; } /* for(int i = 0; i < n.length; i++) { tempSum+=n; } */ return tempSum; } |
调用2: sum(1,2);
调用3: sum(1,2,3,4);
例3.2 printf方法, 对应c语言的printf
int x = 10; int y = 20; int sum = x + y; System.out.printf("%d + %d = %d",x,y,sum); |
例4.1
public enum MyColors { red, black, blue, green, yellow } MyColors color = MyColors.red; for(MyColors option : color.values()) { System.out.println(option); } |
*这样编译器不会让你通过*/
switch(color) { case red: System.out.println("best color is "+red); break; case black: System.out.println("NO " + black); break; default: System.out.println("What"); break; } |
例5.1
1.5版本以前的写法是:
import java.lang.Math; //程序开头处 ... double x = Math.random(); |
import static java.lang.Math.random; //程序开头处
...
double x = random();
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者