本文介绍了System.out.println()中这个引号代表什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道为什么双引号没有显示在实际输出中 - 就在等号后面:

I wonder why the double quotation marks is not shown in the actual output - just after the equal sign:

String word = "" + c1 + c2 + "ll";



完整代码如下:


The full code as follows:

public class InstantMethodsIndexOf
{
    public void start()
    {
        String greeting = new String ("Hello World");

        int position = greeting.indexOf('r');
        char c1 = greeting.charAt(position + 2);
        char c2 = greeting.charAt(position - 1);

        String word = "" + c1 + c2 + "ll";

        System.out.println(word);
    }
}

推荐答案

String x = 5+7; //error: incompatible types



但是


but

String x = ""+ 5+7;// successfully compile and give you 57





阅读: []



这篇关于System.out.println()中这个引号代表什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 04:15