📄 smp41.java
字号:
// NMI's Java Code Viewer 6.0a
// www.trinnion.com/javacodeviewer
// Registered to Evaluation Copy
// Generated PGFZKD >ETB 20 2007 00:02:33
ource File Name: smp41.java
import java.io.PrintStream;
public class smp41 {
public smp41() {
}
public static void main(String args[]) {
String s = "I am a student";
System.out.println(s);
String s1 = new String(s);
System.out.println(s1);
String s2 = new String("I am a student");
System.out.println(s2);
String s3 = new String();
s3 = "I am a teacher";
System.out.println(s3);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -