Error: identifier expected in Java

后端 未结 3 1938
既然无缘
既然无缘 2020-12-11 10:30

I am a new learner of Java. I learned some of the Java core concepts. I got the identifier expected error when run my following code:

class Sekar {
  public          


        
相关标签:
3条回答
  • 2020-12-11 10:46

    What you probably want to do is this:

    class Sekar {
        public static int i=900,j=100,k;
        static void max()
        {
            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();
        }
    }    
    

    However I would discourage you from using static fields in this case. I would suggest you to make i, j and k parameters to your method. And give them descriptive names while you're at it.

    Also note that k is not initialised explicitly and is therefore set to 0 by default, so your else clause is never reached.

    0 讨论(0)
  • 2020-12-11 10:57
    i = 900;
    

    This is a statement in Java, it can be inside Constructor or method, or initialization block.

    In your case, you may move that inside the max() method

    When I re declare the data type again while setting value to "i" like int i = 900 it works. Why does it?

    Here, you are declaring and assigning the value to the variable in the same time, same line.

    Check here for more details and here about java statements, expressions

    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
    0 讨论(0)
  • 2020-12-11 11:09

    Hava a look at Java: Identifier expected :

    i = 900;
    

    is a statement as any other. You can't write statement anywhere. It must be in methods/constructors body. Initializing variable in declaration is called definition and is exception to this rule.

    http://docs.oracle.com/javase/tutorial/java/nutsandbolts/expressions.html

    If you want to initialize static variable you can do it 2 (sane) ways: Initialize variable right where you are declaring it:

    class Sekar {
      public static int i = 900, j,k;
    
      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();       
      }
    }
    

    or do it in static constructor:

    class Sekar {
      public static int i, j,k;
    
      static {
        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();       
      }
    }
    

    Also, if you want to define a constant I recommend using final keyword.

    j could be converted to local variable.

    class Sekar {
      public static final int I = 900;
    
      static void max()
      {
        int k;
        int 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();       
      }
    }
    
    0 讨论(0)
提交回复
热议问题