프로그래밍79 자바스크립트 자식노드 obj.childNodes[i] 2011. 11. 18. JRebel 연동하기 http://blog.naver.com/PostView.nhn?blogId=redsark&logNo=150103678461 2011. 10. 28. 자바형변환 Java ? comparing strings Use == for primitive data types like int If (mystring == null) Use the equals() method to compare objects Use .equals for strings : if (a.equals(“cat”)) Java - Converting int to string String myString = Integer.toString(my int value) or String str = "" + i Java - Converting String to int int i = Integer.parseInt(str); orint i = Integer.valueOf(str).intValue(); double to .. 2011. 10. 24. 이전 1 ··· 17 18 19 20 다음