⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 great.java

📁 JAVA学习源代码,大家可以好好参考,请多提宝贵意见
💻 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 + -