블로그
-
[KOSTA 87기]2014년 9월 24일 수요일(3일차)
: Type_02.java 원문 정리 편집 import kr.or.kosta.kostaData; public class Type_02 { public static void main (String[] args) { //key point //class 도 Type이다 kostaData kosta; //kosta : 객체변수 , instance변수 //kosta 같은
blog.naver.com · 2014.09.24
-
oracle.jdbc.pool.OracleDataSource 관련 에러 로그
initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 심각: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
blog.naver.com · 2014.09.22
-
GRAMMAR
Common nouns are words for a general class of people, places, things, and ideas (man, city, award, honesty They name specific people, places, and things (Joe, Chicago, Academy Award).
blog.naver.com · 2014.07.06
-
Unity - 스크립트 : 에디터 확장(씬 윈도우)
Editor/LightEditor.cs using UnityEngine; using UnityEditor; [CustomEditor (typeof(Light))] public class light.transform.position.ToString()); Handles.BeginGUI(); light.name = EditorGUILayout.TextField ("Name
blog.naver.com · 2013.11.25
-
[영진전문대 컴퓨터정보계열] 자바 네트워크 프로그래밍
.*; import java.io.IOException; public class FileCopy2 { public static void main(String[] args)throws name=database#TOP"); System.out.println("protocol = " + myURL.getProtocol()); System.out.println("authority
blog.naver.com · 2013.11.11
-
[영진전문대학 컴퓨터정보계열] 상속의 계층구조
접근 지정자 Protected : protected가 붙은 맴버는 서브 클래스 에서만 사용가능하다. class Employee { public String name; // 이름: 공용 protected int salary; // 월급: : 보호 멤버 private int RRN; // 주민등록번호: 전용 멤버 public String toString() { return name
blog.naver.com · 2013.10.27
-
[영진전문대학 컴퓨터정보계열] 전공영어 Programming Language
Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage code files(files with a .java extension) are compiled into a format called byte code(files with a .class
blog.naver.com · 2013.11.25
-
[HTML] div와 style 이해
경우가 생기면 재작업이 필요해지므로 div사용하고 class를 지정하여 규제한 style을 활용함. 2. div는 boby 하위로 사용하고 style class를 구분하여 해당 class name을 [div class="name"] 칭해주면 해당 규격이 적용됩니다.
blog.naver.com · 2013.10.11
-
[영진전문대 컴퓨터정보계열] java 접근자와 생성자
.*; class Employee{ private String name; private double salary; private static int count = 0; public Employee(String n, double s){ name = n; salary = s; count ++; } protected void finalize(){ count --;
blog.naver.com · 2013.05.08
-
(영진전문대 컴퓨터프로그래밍전공반) c++ 7장 연습문제(programming)
이어서직원을나타내는클래스를정의한다Employee 클래스는직원의이름과직원의생일직원의입사일을가지고있다 생일과입사일은Date 객체로표현된다Employee 클래스의생성자는이름생일입사일을매개변수로받는다 Employee(String name , Date& birthDate, Date& hireDate); #include #include using namespace std; class Date { private
blog.naver.com · 2012.11.19