336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
C 언어
==================================
char *p = NULL;
if (p != NULL) {
return p;
}
Java
==================================
Object a = null;
if (a != null) {
return a;
}
Lua > nil, not a
==================================
a = nil
if (not a) then
return a
end
Python > None, not a
==================================
a = None
if (not a):
return a
PHP > NULL, is_null()
==================================
$a = NULL;
if (is_null($a)) {
}
'Common knowledge' 카테고리의 다른 글
python 필수 모듈 (0) | 2016.07.19 |
---|---|
윈도우7 업데이트 확인 중 해결 (0) | 2016.07.15 |
AMAZON SSH ATTACK (0) | 2016.06.21 |
디렉토리및 파일관리 FlyExplorer (0) | 2016.06.21 |
Effective Use Case Modeling for Security Information & Event Management (0) | 2016.06.21 |