Skip to content

Instantly share code, notes, and snippets.

@loveprotocol
Last active October 22, 2020 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loveprotocol/c66cf93ad8085648ab813b28110757b3 to your computer and use it in GitHub Desktop.
Save loveprotocol/c66cf93ad8085648ab813b28110757b3 to your computer and use it in GitHub Desktop.
String address; // Java String 타입은 참조 타입이므로 Null 기본 허용
//대충 address를 얻어오는 코드 생략
...
if (address != null && address.length() != 0) {
if (address.contain("seoul")) {
...
}
} else {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment