错误:Java中预期的标识符
作者:互联网
我是Java的新学习者.我学到了一些Java核心概念.运行以下代码时,我得到了标识符预期错误:
class Sekar {
public static int i,j,k;
i = 900;
static void max()
{
j = 100;
if(i>j)
{
k=i;
}
else {
k=j;
}
System.out.println("The maxmimum vale between"+i+"and"+j+"is :"+k);
}
public static void main(String[] args) {
max();
}
}
当我编译我的代码时,我收到以下错误:
error: identifier expected
i = 900;
^
>任何人都可以解释为什么会发生这种错误吗?
>当我谷歌关于标识符预期错误时,我发现当没有数据类型声明变量时会发生此错误,但我为所有变量i,j,k声明了这一点.
>当我将值设置为“i”时再次重新声明数据类型,如int i = 900则可行.为什么呢?
解决方法:
i = 900;
这是Java中的一个语句,它可以在Constructor或方法或初始化块中.
在您的情况下,您可以在max()方法中移动它
When I re declare the data type again while setting value to “i” like
int i = 900
it works. Why does it?
在这里,您在相同的时间,相同的行中声明并将值赋给变量.
检查here以获取更多详细信息,并查看here关于java语句,表达式
Statements
Statements are roughly equivalent to sentences in natural languages. A
statement forms a complete unit of execution. The following types of
expressions can be made into a statement by terminating the expression
with a semicolon (;).
- Assignment expressions
- Any use of ++ or —
- Method invocations
- Object creation expressions
标签:java,instance-variables 来源: https://codeday.me/bug/20190929/1831630.html