public static void test(int x, int y) {
Thread thread = new Thread() {
@Override
public void run() {
System.out.println(x);
}
};
thread.start();
这是我的代码。我无法获得x的价值。函数匿名类的方法中如何获取参数x的值?
慕后森
相关分类