Are Java arrays in a static method thread safe?

后端 未结 0 570
我在风中等你
我在风中等你 2021-02-15 00:52
   public static int rank(int key, int[] a) {
        int lo = 0;
        int hi = a.length - 1;
        while (lo <= hi) {
            // Key is in a[lo..hi] or not          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题