我在Android Studio中有一个项目,通过使用var
,它的一部分将变得更加简单。 但是,每次尝试使用var时,都会得到一个错误:找不到符号类var
。 我的代码:
public class Program {
var variable = "value";
}
//note: this is not my actual code (obviously), but even this simple test doesn't work
谢谢。
android是Java的旧版本,所以你需要使用严格的数据类型。