forked from hellokaton/write-readable-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample6.java
More file actions
36 lines (27 loc) · 700 Bytes
/
Copy pathExample6.java
File metadata and controls
36 lines (27 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package chapter_03;
import java.util.HashMap;
import java.util.Map;
/**
* 名字该多长
*
* @author biezhi
* @date 2018/6/24
*/
public class Example6 {
private String newNavigationControllerWrappingViewControllerForDataSourceOfClass;
private boolean debug;
public void foo() {
if (debug) {
Map<String, Integer> m = new HashMap<>();
lookUpNamesNumbers(m);
System.out.println(m);
}
}
private void lookUpNamesNumbers(Map<String, Integer> m) {
}
private final long cMaxFileSize = 1024 * 10L;
private final long MAX_FILE_SIZE = 1024 * 10L;
public void usePattern() {
int offset_ = 10;
}
}