pchero on August 20th, 2010

🙂

Continue reading about TED – 스티븐 호킹

pchero on August 15th, 2010

 오늘 C++ 책에서 나온 소스코드를 컴파일하다 이상한 에러를 발견했다. 17-2.cpp:84: error: expected unqualified-id before numeric constant17-2.cpp:84: error: expected initializer before numeric constant  다음의 링크에서 해답을 찾을 수 있었다. http://bytes.com/topic/c/answers/752247-what-does-expected-unqualified-id-before-numeric-constant-mean All uppercase names are often used for preprocessor macros, which doesn’t respect namespace scopes. Therefore such names should generally be avoided for everything else.  즉 어디에선가 […]

Continue reading about error: expected unqualified-id before numeric constant

 두시가 넘어가는 새벽무렵… 무심코 트위터 타임라인을 바라보다가 아래의 글을 보게 되었다.  @Soak87: http://j.mp/aBzSN8 해체되고 5년만에 Live Aid 무대에서 만난 Led Zeppelin… “Stairway to heaven” 드럼은 사망한 John Bonham을 대신해서 Genesis 출신의 Phil Collins가 연주…  @Soak87: 음악 좋아하시는 분들은 Youtube에서 “Live Aid 1985″를 검색해 보세요… 엄청난 결과물들을 보실 겁니다. Rock에서 Dance까지 정말 슈퍼스타란 슈퍼스타는 모두 나옵니다. […]

Continue reading about 재미있는 생각을 할 수 있는 방법에 관하여…

pchero on August 11th, 2010

 KLDP 에서 자료를 검색하던 중 GDB와 관련된 매우 유용한 글타래를 발견하고 여기에 링크를 걸어둔다.  http://kldp.org/node/71806

Continue reading about GDB 사용 관련

pchero on August 9th, 2010

 입력 반복자를 이용하여 노드를 삽입시 많이 사용되는 반복자가 insert_iterator이다. 이 반복자를 이용하면 원하는 위치에 노드를 삽입하려 할 때 편하게 작업을 수행할 수 있다. 반복자의 사용 예를 보면 다음과 같다. #include <iostream>#include <list> using namespace std; int main(){  // 스트링을 저장할 리스트 선언 및 첫 번째 스트링 저장  list<string> strList;  strList.push_back(“AAA”);   // 리스트에 데이터를 입력하기 […]

Continue reading about insert_iterator 반복자 활용