下面程序的运行结果是( )。  public class OperatorsAndExpressions{  void equalsMethod1( ){   //基本类型的数据之间的比较   int i=10,j=15;   System.

admin2009-01-15  24

问题 下面程序的运行结果是(    )。  public  class  OperatorsAndExpressions{  void  equalsMethod1( ){   //基本类型的数据之间的比较   int  i=10,j=15;   System.out,println(i==j);  //复合数据类型的数据之间的比较  String  s1=new  String ("how  are  you");  String  s2=new  String ("how  are  you");  System.out.println(s1==s2):  }  public  static  void  main (String  args[  ]){  OperatorsAndExpressions  OperAndExp=new  OperatorsAndExpressions( ):  //用于基本类型数据和复合类型数据的=="运算符  OperAndExp,equalsMethod1( )  } }

选项 A、false  false
B、false  true
C、tree  false
D、true  true

答案1

解析
转载请注明原文地址:https://kaotiyun.com/show/o2np777K
0

最新回复(0)