티스토리 뷰
이 슬라이드를 보고 암이 치료되었습니다...
위 슬라이드 내용을 아래와 같이 정리해 봤다.
Base :: Objects.equal(), Objects.hashCode(),
MoreObjectes.toStringHelper(), ComparisonChain.compare()
public class Employee implements Comparable{
public String name;
public Integer age;
public Job job;
@Override
public boolean equals(Object o) {
if(!(o instanceof Employee)) return false;
Employee that = (Employee)o;
return Objects.equal(name, that.name) &&
Objects.equal(age, that.age) &&
job == that.job;
}
@Override
public int hashCode() {
return Objects.hashCode(name, age, job);
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this).
add("name", name).
add("age", age).
add("job", job).
toString();
}
@Override
public int compareTo(Employee another) {
return ComparisonChain.start()
.compare(this.name, another.name,
Ordering.natural().nullsLast())
.compare(this.age, another.age,
Ordering.natural().nullsLast())
.compare(this.job, another.job,
Ordering.natural().nullsLast())
.result();
}
}
Base :: Preconditions.checkNotNull()
public class Mail {
String title;
String body;
public Mail(String title, String body) {
this.title = Preconditions.checkNotNull(title, "title must not be null");
this.body = Preconditions.checkNotNull(body, "body must not be null");
Preconditions.checkArgument(body.matches("<[^>]*>"), "Cannot insert tags in body." );
Preconditions.checkArgument(title.matches("<[^>]*>"), "Cannot insert tags in title" );
}
}
// java.lang.NullPointerException: title must not be null 발생.
Mail mailA = new Mail(null, null);
// java.lang.IllegalArgumentException: Cannot insert tags in body. 발생.
Mail mailB = new Mail("ha ha!","hi <div> hello </div> " );
더 많은 정보 : http://stackoverflow.com/questions/3128120/what-is-the-proper-error-message-to-supply-to-google-guavas-preconditions-met
Base :: MoreObjects.firstNonNull()
public String getPackageName() {
// 기존
//String packageName = getPackageName();
//return (packageName != null)?packageName:"UNKNOWN";
// 개선
return MoreObjects.firstNonNull(getPackageName(), "UNKNOWN");
}
Base :: Joiner
List<String> heroes = Lists.newArrayList("Kick-Ass", "Iron Man", null, "Chuck Norris");
String names = Joiner.on(", ").join(heroes);
// NullPointerException 발생!!
List<String> heroes = Lists.newArrayList("Kick-Ass", "Iron Man", null, "Chuck Norris");
String names = Joiner.on(", ").skipNulls().join(heroes);
// "Kick-Ass, Iron Man, Chuck Norris"
List<String> heroes = Lists.newArrayList("Kick-Ass", "Iron Man", null, "Chuck Norris");
String names = Joiner.on(", ").useForNull("Invisible Man").join(heroes);
// prints "Kick-Ass, Iron Man, Invisible Man, Chuck Norris"
Map<Integer, String> map = new HashMap<Integer, String>();
map.put(1, "Chuck Norris");
map.put(2, "Iron Man");
map.put(3, "Kick-Ass");
String ranks = Joiner.on('\n').withKeyValueSeparator(" -> ").join(map);
System.out.println(ranks);
/**
Prints:
1 -> Chuck Norris
2 -> Iron Man
3 -> Kick-Ass
*/
정리중...
'개발 관련 > Java' 카테고리의 다른 글
스트링 엔코딩 변환 - euc-kr <---> utf-8 (3) | 2016.03.07 |
---|---|
JAVA 텍스트 파일의 Encoding 정보 가져오기 + String Encoding 변환하기. (1) | 2015.11.18 |
[JAVA:병렬 프로그래밍 - 3] Exchanger 사용하기. (0) | 2014.10.06 |
[JAVA:병렬 프로그래밍 - 2] CyclicBarrier 사용하기. (0) | 2014.09.02 |
[JAVA:병렬 프로그래밍 - 1] CountDownLatch 사용하기. (0) | 2014.08.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- ATtiny85
- 개발
- json
- 아두이노
- 알리익스프레스
- 블루투스
- Iot
- 병렬 프로그래밍
- activity
- 이더넷
- NeoPixel
- 안드로이드 개발
- ENC28J60
- Android
- Cheapduino
- 스마트 무드등
- bluetooth
- ESP8266
- 가습기
- ndk
- 침블락
- WS2812B
- 부트로더
- oled
- noidemcu
- HC-06
- arduino
- 안드로이드
- 칩두이노
- Java
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함