반응형

프로그램 247

java 의 List , Arraylist 의 차이점.

몰라서 찾아보니, 이런 게 나왔다. 원본은 요기 : http://www.javabeat.net/qna/9-difference-between-list-and-arraylist-/ List is an interface and ArrayList is an implementation of the List interface. The arraylist class has only a few methods in addition to the methods available in the List interface. There is not much difference in this. The only difference is, you are creating a reference of the parent interface in..

프로그램 2012.06.16

코드 입력을 위한 Eclipse 테마.

나는, 흰 색 바탕에 검은 글 보다 검은 글 바탕에 흰 색 글을 더 좋아한다. 눈이 덜 피로하거덩. 근데, 각종 에디터 프로그램에서 이거 조절하려면, 수치값을 하나만 바뀌선 안 되고, 엄청 많은 값을 손대야 된다.우연히 인터넷서 이러한 값들이 모두 설정되어 있는 파일을 찾아, 추가한다. 원본이 있었던 사이트는 아래와 같다. http://eclipsecolorthemes.org/

프로그램/Eclips 2012.06.16

php 에서 & 와 @ 의 뜻.

아. 그냥. 간단히 하자. @ : 함수 실행시 에러 나도, 그 에러 메시지가 출력되지 않게 한다.& : 함수명 앞에 붙을 경우, 리턴값을 참조( reference ) 로 바꾸어 버린다. @foo() --> 만일 함수 foo() 코드에서, 혹은 실행중에 에러가 나도, 무시해 버린다.$aaa = &foo() --> 함수 foo() 가 특정 값을 반환하면, 그 값은 $aaa 가 참조값으로 가진다. 예를 들어. global $aaa;funcion foo(){global $aaa;return $aaa = 1234;} $bbb = &foo();echo $bbb; // 이 때 출력값은 1234$aaa = 4321;echo $bbb; // 이 때 출력값은 4321 이상 끝.

프로그램 2012.05.24

워드프레스

wordpress 에서, $wpdb->query() 와 $wpdb->get_results() 의 차이점. $wpdb->query() : 실행용 함수. 즉, insert, drop, update 용. 리턴값은 row 수( int ), false( 실행 실패 ) 로 사용된다.$wpdb->get_results() : 결과 조작용 함수. 주로 select 로 검색한 결과값( rows )을 조작할 때 사용한다. 예제는 http://codex.wordpress.org/Class_Reference/wpdb#SELECT_Generic_Results 를 보고, 쿼리 전후의 에러 처리를 하려면 http://www.saphod.net/2008/06/03/handling-mysql-errors-using-the-wpdb-cl..

프로그램 2012.05.21

jquery.ajaxForm()도 submit을 이용한다.

자세한 건 http://jquery.malsup.com/form/#getting-started 를 참조하고... 예제만 퍼 오자면 OverviewThe jQuery Form Plugin allows you to easily and unobtrusively upgrade HTML forms to use AJAX. The main methods, ajaxForm and ajaxSubmit, gather information from the form element to determine how to manage the submit process. Both of these methods support numerous options which allows you to have full control over ho..

프로그램 2012.05.17

php 에서는 함수 재선언을 지원하지 않는다.

실험한 김에 해 봤다. 결과는? Fatal error: Cannot redeclare foo() (previously declared in D:\APM\htdocs\testfn.php:6) in D:\APM\htdocs\testfn.php on line 8 php에서, 함수 오버로딩 재선언은 안된다. 지나가던 분이 지적해 주셔서, 내용 고치고 추가설명. 1. script 언어는 동적 compiling + 순차적 실행 언어인 경우라고 생각해서, 2. 같은 함수를 상황에 따라 재선언해서, 3. 일종의 "함수 오버라이딩" 과 같은 기능을 훙내내려 했다.4. 결론은 위와 같이, 안됨.5. 자바스크립트나 ASP 생각하면 대략낭패...

프로그램 2012.04.30

PHP : __("TEXT") 의 용법

마치 MFC 에서의 _("TEXT") 와 비슷하다. 다국어 대응용 코드라는 군. 잘 설명된 게 있어서, 그대로 퍼옴. 출처 : http://stackoverflow.com/questions/2427204/php-what-does-some-text-do In Kohana (version 3) the function is defined in system/base.php and is a convenience function to aid (as the other answers have mentioned) internationalization. You provide a string (with, optionally, some placeholders to substitute values into the finishe..

프로그램 2012.04.17
반응형