如何获得x变量的值?

时间:2019-05-16 09:16:46

标签: java android

  // -1 - abscent values will be on top
  return list.OrderBy(item => map.TryGetValue(item.Name, out var v) ? v : -1);

这是我的代码。我无法获得 x 的价值。如何在函数的匿名类的方法中获取参数x的值?

1 个答案:

答案 0 :(得分:7)

将参数x声明为最终

   public static void test(final int x, int y) {

        Thread thread = new Thread() {
            @Override
            public void run() {
                System.out.println(x);
            }
        };
        thread.start();

    }