单选题 下列程序段的输出结果是( )。 String MyStr = "Hello,"; MyStr = MyStr + "World!"; System.out.println(MyStr);
【正确答案】 A
【答案解析】String类型可以直接使用“+”进行连接运算。