Example 1int n = 10;const int* pN = &n;*pN = 20; //컴파일오류 n이라는 이름을 가진 변수를 변경하는 것은 허용. 하지만 pN 포인터를 이용하여 값을 변경시키는 것은 허용하지 않음pN 포인터에 다른 변수를 지정하는 것은 허용 Example 1-1int n1 = 10;const int* pN = &n1;int n2 = 20;pN = &n2; 예제 1-1의 경우 컴파일 에러 없이 잘 된다. Example 2int n1 = 10;int n2 = 20;int* const pN = &n1;*pN = 20;pN = &n2; //컴파일 오류 예제 2의 경우 포인터 변수에 특정 변수를 지정하게 된후 이를 변경하는 것이 허용되지 않는다.
이 경우 프로젝트 폴더 우클릭 -> Properties -> Run/Debug Setting 에 들어간다 이후 오른쪽에 뜨는 창에서 New 클릭 -> C/C++ Application 을 선택 Main 탭에서 C/C++ Application : 이 부분이 원래 빈칸으로 되어있는데 이 부분을 Debug/Project명 으로 작성한후 OK 선택 그리고 나서 컴파일을 하면 잘 된다. 간단한 방법으로 ctrl+B를 누른후 컴파일 하면 잘된다
MapReduce 프로그래밍을 하기 위한 이클립스 설정이 끝났다고 가정한 후 작성합니다. mapreduce 프로젝트 -> 오른쪽키 -> properties -> Java Build Path -> Libraries클릭후 hadoop-core-1.x.x.jar 아이콘 왼쪽에 있는 -> 화살표 클릭 Javadoc Location이 처음에는 none으로 설정되어 있음 경로를 바꾸어 주어야 하는데 $HADOOP_HOME(하둡 설치 폴더)/docs/api/ 또는 http://hadoop.apache.org/docs/stable/api/ 로 지정해 주면 잘 됩니다.
vim 설치후 홈 디렉토리에서 .vimrc 파일을 생성한다 $vi .vimrc 그리고 아래와 같이 파일내용을 작성한다.set tabstop=4 "tab sizeset background=dark "background colorset autoindent "automatic indentationset smartindent "optional indentationset ruler "representaion of column, row at cusorset shiftwidth=4 "tab size when automatic indentationset hlsearch "highlightset showmatch "(), {} matchset number "작업행 번호 사용set paste! "붙여넣기시 계단현상 제거s..
1. imwheel 설치 $sudo apt-get install imwheel 2. .imwheelrc 파일 편집 $vi ~/.imwheelrc 3. 아래의 내용으로 .imwheelrc 파일 작성 ".*"None, Up, Up, 3None, Down, Down, 3 이때 숫자 3은 평상시 스크롤 속도의 3배라는 것을 의미한다.저장 4. imwheel 실행 $imwheel 5. imwheel 죽이기 $sudo killall imwheel 출처 : http://askubuntu.com/questions/285689/increase-mouse-wheel-scroll-speed
- Total
- Today
- Yesterday
- Python
- x1 carbon
- t450s
- x250
- 파이썬
- c++
- L470
- lenovo
- t470p
- x1 carbon 5th
- x1 carbon 2017
- x1
- x260
- x1c
- t470
- 더헌트맨
- L570
- t470s
- t460s
- thinkpad 13
- x1 카본 5세대
- 키보드
- 레노버
- socket
- Yoga 370
- 소켓
- Thinkpad
- t570
- x1 카본 2017
- x270
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |