습관적 const.
2009/03/14
유형 #1.
int aaa(char *bp)
{
bp++; // 야 임마..
....
}
유형 #2
int aaa(const char *bp)
{
bp++; // 컴파일러가 아예 에러를 낸다. 가장 안전!
....
}
유형 #3
int aaa(const char *bp)
{
char *temp_bp = (char *)bp;
temp_bp++; // 으음..
....
}
습관이 무섭다.
[t:/] is not "technology - root". dawnsea, rss