1 19 20 package org.netbeans.api.debugger.jpda.testapps; 21 22 27 public class LocalVariablesApp { 28 29 public static void main(String [] args) { 30 LocalVariablesApp sa = new LocalVariablesApp(); 31 sa.watches(); 32 } 33 34 private void watches() { 35 int x = 40; 36 float y = 50.5f; 37 Object s = "asdfghjkl"; 38 { 39 int g = 20; 40 System.currentTimeMillis(); 41 } 42 CharSequence g = "ad"; 43 System.currentTimeMillis(); 44 } 45 } 46 | Popular Tags |