Java: private static boolean a,b,c,d <--each has the same prefix?
- by HH
Are they equivalent?
private static boolean readAllFiles = false,readAllDirs = false;
private static boolean readAllFiles = false;
private static boolean readAllDirs = false;
CASE TRUE: Have they still the same prefix with different values?
private static boolean readAllFiles = false,readAllDirs = true;