gpt4 book ai didi

java - 字符串无法解析为类型

转载 作者:行者123 更新时间:2023-12-02 08:13:53 24 4
gpt4 key购买 nike

我的代码中出现“字符串无法解析为类型”错误。

public class Main {


public static void main(String[] args) {
// TODO Auto-generated method stub
FormLetter template;
template = new FormLetter();
template.print();
template.composeFormLetter(Sean, Colbert, God);
template.print();

}

}

class FormLetter
{
public void print(){
System.out.println(to + candidate + from);

}

public void composeFormLetter(string t, string c, string f){

to = t;
candidate = c;
from = f;
}
private string to;
private string candidate;
private string from;

}

最佳答案

String 在 Java 中是大写的。您不能使用小写字符串。 (这是 C#)

附带问题:
下面的代码是如何编译的?

template.composeFormLetter(Sean, Colbert, God);

关于java - 字符串无法解析为类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3877832/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com