recherche

Maison  >  Questions et réponses  >  le corps du texte

java String[] 初始化有这种写法?

  public static String[] getSetPermissionCommand(String perm, boolean recursive)
  {
    if (recursive) {
      return new String[] { "chmod", "-R", WINDOWS ? new String[] { WINUTILS, "chmod", "-R", perm } : perm };
    }
    
    return new String[] { "chmod", WINDOWS ? new String[] { WINUTILS, "chmod", perm } : perm };
  }

摘自hadoop-common-2.5.2.jar

用jd-gui-0.3.6 反编译的,没看过src


高洛峰高洛峰2940 Il y a quelques jours509

répondre à tous(1)je répondrai

  • 三叔

    三叔2016-11-12 13:30:33

    String[] 里面放 String[]...反编译器抽风了?

    répondre
    0
  • Annulerrépondre