Development(8008)
-
배열과 객체의 사용- 07.html
배열과 객체의 사용 객체를 최소로 만들고, 배열의 객체에 접근해서 동적으로 배열 요소 추가 학습내용 자바에는 없는 형태 패턴이 바뀔 경우 소스 코드 //빈 객체 생성 var students = []; //객체를 배열에 저장 students.push( { name:'홍길동', korean:90, math:70, english:89, science:80 } ); students.push( { name:'이순신', korean:95, math:79, english:78, science:87 } ); students.push( { name:'유관순', korean:100, math:96, english:67, science:67 } ); students.push( { name:'일지매', korean:89, m..
-
SQLite
http://www.sqlite.org/ SQLite 내장된 관계형 데이터베이스 SQLite의 특징 오픈 소스 최소한의 라이브러리만으로 동작 관리유저나 설정파일 등이 불필요 원자성(atomicity), 일관성(consistency), 독립성(isolation), 영속성(durabilitiy)이라는 데이터베이스에 필요한 특성을 갖추고 있습니다. SQL92에서 정의된 명령어의 대부분 이용가능 하나의 데이터베이스가 하나의 파일로 저장 MS Access보다 좀 더 유연하고 성능이 뛰어남 *SQL92 SQL92는 표준SQL(ANSI/ISO SQL)을 지칭합니다. http://en.wikipedia.org/wiki/SQL-92 데이터베이스 데이터를 영속적으로 저장할 수 있는 공간 테이블 데이터베이스에서 데이터가 모..
-
IfEx01.java-조건문 - 단일 If문
조건문 - 단일 If문 소스코드 public class IfEx01 { public static void main(String[] args) { int n =10; // int n =4; if( n > 5){ System.out.println("n은 5보다 크다"); } System.out.println("프로그램 종료"); } } 출력결과 n=4인 경우 n=10인 경우
-
eclipse 설치 (for C Programming)
eclipse 설치: java 기반 IDE http://www.eclipse.org > 우측에 DOWNLOAD Package Solutions 영역의 Eclipse IDE for Java EE Developers 우측에 비트 수에 맞는 파일 다운로드 합니다. ※ Eclipse Standard자바만 Eclipse IDE for Java EE Developers자바 및 웹도 workspace folder 생성 작업폴더 생성합니다. C:\javanAndroid\workspace eclipse설치 설치 없이 다운받은 파일을 압축해제해서 바로 사용할 수 있습니다. 압축 푼 폴더의 다음 경로로 이동해 이클립스 실행파일 실행합니다. eclipse 실행 C:\javanAndroid\eclipse-jee-kepler-S..
-
StarUML v2.0.1-beta12 updated(2014/12/01)
Release Notes v2.0.0-beta12 (2014/12/01) Print Diagrams to PDF Show/Hide Shadows Support Frame Element Resolved Issues Show type in InputPin, OutputPin #268 Image's _parent is not assigned #267 Allow to add TemplateParameter to Operation #266 Diagrams containing "/" char in name will not be exported to image in Windows #265 Turn on/off shadows of elements #264 Message cannot be connected to Gate..
-
if문, if문 형식, if~else문, if vs if~else
if문· 한번에 하나의 조건을 판단하여 분기· boolean형(true/false)의 결과를 가지는 조건식이 있어야 하며 그 조건식의 결과로 수행해야하는 문장을 결정하게 되는 분기문입니다.· 중괄호({)는 하나의 문장만 올 경우 생략 가능합니다. if문 형식 조건식의 결과가 참(true)이면 해당 블럭의 명령문을 실행하며, 거짓(false)이면 아무것도 실행하지 않습니다.