java基础研究
Posted 程序咖啡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java基础研究相关的知识,希望对你有一定的参考价值。
public class Test {
private static int value=1;
public static void main(String[] args)
{
int value=2;
//System.out.println(value);
int X=100;
int Y=200;
System.out.println("X+Y="+X+Y);
System.out.println(X+Y+"=X+Y");
}
}
以上程序的运行结果如下
发现‘ +‘在输出时有时是运算符有时是衔接符
将程序修改后
public class Test {
private static int value=1;
public static void main(String[] args)
{
int value=2;
//System.out.println(value);
int X=100;
int Y=200;
System.out.println("X+Y="+X+Y);
System.out.println(X+Y+"=X+Y"+X+Y);
}
}
运行结果为
由此可见在输出时\'+\'在第一个字符串之前是加号,之后就是衔接号
以上是关于java基础研究的主要内容,如果未能解决你的问题,请参考以下文章