1 Reply Latest reply on Jul 6, 2004 12:14 PM by chiba

    Get the variable value ??

    ericmacau

      Hello,

      How can I get the local variable value in methods ??

      For example,

      public class A {
       public int sum(int a, in b) {
       int x = 100;
       return a + b + x;
       }
      }
      


      How can I get the value of "x" in the method sum ???


      Eric