Created
October 18, 2012 12:54
-
-
Save hatelove/3911622 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(len(xxx)>= 0) | |
{ | |
if(xxx != "offline" && xxx != "") | |
{ | |
//xxx非"offine",且xxx非"" | |
} | |
else if(xxx=="offline") | |
{ | |
//xxx為"offline" | |
} | |
else | |
{ | |
//xxx為"" | |
} | |
} | |
else | |
{ | |
// 這裡才是我的疑問,什麼時候會進來 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment