摘要:
next(); 一定要读取到有效字符后才可以结束输入 对输入有效字符之前遇到的空白,next() 方法会自动将其去掉 只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符 next() 不能得到带有空格的字符串 public static void main(String[] args) { 阅读全文
摘要:
@author 作者名 @version 版本号 @since 指明需要最早使用的jdk版本 @param 参数名 @return 返回值 @throws 异常抛出情况 阅读全文
摘要:
/** * x ? y : z * 如果x==true 则返回y 否则结果为z */ public static void main(String[] args) { int score = 50; String stype=score<60 ? "不及格" : "及格"; System.out.p 阅读全文