import java.util.Scanner; JDK5的特性
Scanner s = new Scanner(System.in);
使用next()和nextLine()方法读取输入内容的区别:
import java.util.Scanner;
public class Demo01 {
public static void main(String[] args) {
//创建一个scanner对象,用于接收键盘数据
Scanner scanner = new Scanner(System.in);
System.out.print("用next方式输入:");
//判断用户有没有输入字符串
if(scanner.hasNext()){
String str= scanner.next();
System.out.println("输入的内容为:"+str);
}
scanner.close(); //注意:每次使用完IO接口后都要关闭,防止一直占用。
}
}
用next方式输入:Hello World!
输入的内容为:Hello
next()方法遇到空字符值时停止读取,故只读取了Hello就停止读取了
import java.util.Scanner;
public class Demo02 {
public static void main(String[] args) {
//创建一个scanner对象,用于接收键盘数据
Scanner scanner = new Scanner(System.in);
System.out.print("用nextline方式输入:");
//判断用户有没有输入字符串
if (scanner.hasNextLine()) {
String str = scanner.nextLine();
System.out.println("输入的内容为:" + str);
}
scanner.close();
}
}
用nextline方式输入:Hello World!
输入的内容为:Hello World!
nextLine()方法遇到回车符值时才停止读取,故读取到!后的回车键时才停止读取。
nextLine()用的还是比较多。
scanner.hasNextInt():判读输入的内容是否是int类型,判断其他数据类型,将Int替换即可。
if(){
}else if(){
}else{
}
switch支持String类型了
case标签必须为字符串常量或字面量
switch(){
case 'A':
System.out.printLn('A');
break; //不加break则把后面结果都输出(case穿透现象)
case 'B':
System.out.printLn('B');
default:
System.out.printLn('default');
}
while()是不满足条件时,就不执行。
doWhile()是即使不满足条件,也会至少执行一次。
do{
}while();
JDK5引入,主要用于数组或集合的增强型for循环。
for(声明语句:表达式){
//代码句子
}
//例子
int[] nums = {1,2,3,4};
for(int x:nums){
System.out.println(x);
}
break:强行退出循环,不执行循环中剩余的语句
continue:终止某次循环过程,即跳过循环体中尚未执行的语句,接着进行下一次是否执行循环的判定
利用for循环打印三角形
public class Demo03 {
public static void main(String[] args) {
for (int i = 1; i <= 5; i++) {
for (int j = 5; j >= i; j--) {
System.out.print(" ");
}
for (int j = 1; j <= i; j++) {
System.out.print("*");
}
for (int j = 1; j < i; j++) {
System.out.print("*");
}
System.out.println("");
}
}
}