本帖最后由 混乱的世界 于 2015-4-23 22:39 编辑
- import java.io.*;
- class Demo
- {
- public static void main(String[] args) throws Exception
- {
- String str1="abc";
- String str2="abc";
- System.out.println(str1==str2);
- System.out.println(str1=="abc");
- System.out.println(str1.equals("abc"));
- BufferedReader bfr=new BufferedReader(new InputStreamReader(System.in));
- String s=null;
- PrintWriter pw=new PrintWriter(System.out,true);
- while((s=bfr.readLine())!=null)
- {
- //为什么要用equals方法才能匹配到over做为结束标记。
- if(s=="over")
- break;
- else
- pw.println(s.toUpperCase());
- }
- bfr.close();
- pw.close();
- }
- }
复制代码 |
|