본문 바로가기
반응형

Development/Java3

Unable to load default SVN Client 발생 시. RHEL(Red Hat Enterprise Linux)에 설치된 Eclipse에 Subclipse를 설치하려고 시도를 했다. 일반적인 방법인 이클립스 애드온 업데이트를 통해 설치했다. 다음 업데이트 주소를 등록하고 (Required) 표시가 된 애드온(Add-on)을 설치했다. 분명히 윈도에서는 이렇게 (Required)만 설치하면 잘 동작했다. http://subclipse.tigris.org/update_1.6.x 그런데.. SVN repository를 등록하려고 하면 다음과 같은 경고가 나오면서 등록이 되지 않는다. 내용을 보니 SVN Client가 없어서 Subversion 서버에 접속을 할 수 없는 것으로 보이는데.. 역시 백방으로 수소문하려고 구글링을 시작했다. 그런데 대부분이 OS X에 대한.. 2014. 11. 10.
call by reference vs call by pointer. c 에 개념에서 함수 파라미너 선언은 call by reference / value 를 사용하고, c++ 로 넘어 오면서 call by pointer 가 추가되어 call by pointer / reference / value 를 사용합니다.하지만 c에서 사용하던 call by reference 개념이 c++의 call by pointer 개념과 같으며 reference의 개념이 조금 달라졌습니다. pointer를 주소에 의한 전달이라고하면,reference의 경우 참조에 의한 전달이라고 합니다. pointer / reference 차이가 있다면, (pointer는 알고 계시리라 믿고~)reference의 경우 함수 내부에서 일반 변수와 같이 포인터 연산자(*, &) 없이 사용하며, 포인터 연산(ptr+.. 2014. 2. 12.
What is the defference between Integer.parseInt and Integer.valueOf parseIntpublic static int parseInt(String s) throws NumberFormatExceptionParses the string argument as a signed decimal integer. The characters in the string must all be decimal digits, except that the first character may be an ASCII minus sign '-' ('\u002D') to indicate a negative value. The resulting integer value is returned, exactly as if the argument and the radix 10 were given as arguments.. 2013. 5. 1.
반응형