1 Reply Latest reply on Mar 1, 2005 8:57 AM by chiba

    Beginner's question !

    ericmacau

      Hello,

      If I knows the variable name, how can I retrieve its value?

      For example:

      public class A {
      String s;

      public A() {
      s = "123456";

      String x = "XXX";
      }
      }

      How can I know the value of "s"?


      Eric