赞
踩
public class Demo10 { public static void main(String[] args) { //三元运算符 ?: boolean值?true取值:false取值; String str=5<4?"真":"假"; System.out.println(str); //类似if else //foreach循环 String[] arr={"ac","df","er","lk"}; for(String item : arr){ System.out.println(item); } } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。