📄 great.java
字号:
public class Great
{
public static void main(String args[])
{
String a="Java is great.";
String b=a;//.toString();
if(a==a)
System.out.println("A is the same as B.");
else
System.out.println("A is NOT the same as B.");
if(a.equals(b))
System.out.println("A equals B.");
else
System.out.println("A idoes not equal B.");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -