great.java
来自「JAVA学习源代码,大家可以好好参考,请多提宝贵意见」· Java 代码 · 共 16 行
JAVA
16 行
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 + =
减小字号Ctrl + -
显示快捷键?