java基础面试题

public class StringTest {
 public static void main(String[] args){
  System.out.println("abc".compareTo("kkk"));// 返回值 是 内容的真实差值 而不是 0 1 -1
  
  String reg = "[0-9]{3}";         // 要与 js的正则区别开来
  boolean k = "123".matches(reg);  //方法名是 matches
  System.out.println(k);
  
  System.out.println(Pattern.matches(reg, "131"));//或是直接调用
  
   Pattern p = Pattern.compile("a*b");  //compile
   Matcher m = p.matcher("aaaaab");     //matcher
   boolean b = m.matches();             //matches()
   System.out.println(b);
 }
}

你可能感兴趣的:(返回值,java基础,方法,及)