嗨,我是新来的,如果你可以帮助我,我对此毫不知情,我会恭喜你。
这是我尝试过的代码
包裹paquete;
class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
int variable;
variable = 5;
System.out.println("variable");
}
}
这是eclipse给我的错误,它说错误是int变量;我不知道为什么当我创建类主要我选择公共类主要因为它没有显示我的类默认我认为这是错误但我可以选择。如果有人可以帮助我,请。
答案 0 :(得分:3)
print参数周围的引号使其成为常规旧字符串。如果要打印变量值本身,请省略双引号。如前所述,将其设为@constant kAudioDevicePropertyDeviceUID
A CFString that contains a persistent identifier for the AudioDevice. An
AudioDevice's UID is persistent across boots. The content of the UID string
is a black box and may contain information that is unique to a particular
instance of an AudioDevice's hardware or unique to the CPU. Therefore they
are not suitable for passing between CPUs or for identifying similar models
of hardware. The caller is responsible for releasing the returned CFObject.
。
答案 1 :(得分:1)
问题是你已经声明了一个变量'变量'在这一行
int variable;
但你永远不会使用那个变量。但是,如果更改println语句,则可以使此警告消失
System.out.println("variable: " + variable);
答案 2 :(得分:1)
通过在System.out.println("variable");
中的变量周围加上引号,输出字符串(word)变量。如果要输出变量的文字值,则不要在其周围加上引号。
例如,System.out.println(variable);
会输出5
(因为这是您分配给variable
答案 3 :(得分:0)
实际上您正在尝试打印variable
文字
System.out.println("variable");
所以改为
System.out.println(variable);