StringTest.java
上传用户:szfcled
上传日期:2022-06-12
资源大小:236k
文件大小:0k
源码类别:

文件格式

开发平台:

Java

  1. public class StringTest {
  2. public static void main(String args[]) {
  3. String s = "this is a test string!";
  4. System.out.println("before changed, s= " + s);
  5. String t = s.toUpperCase();
  6. System.out.println("after changed, s= " + s);
  7. System.out.println("t= " + t);
  8. }
  9. }