2019-Winter 이강교수님 C++/Java GUI Programming Camp
-
Week 1 : Project 1 (
12/23 ~ 12/30
) -
Week 2 : Project 2 (
12/31일 ~ `20/1/8
) -
Week 3 : Project 3 (
1/9 ~ 1/15
) -
Week 4 : Project 4 (
1/16 ~ 1/22
)
-
장소 : NTH414
-
시간 :
10:00 ~ 17:00
-
일정 :
12/23 ~ 1/23
(총 20일 - 주말, 12/24, 12/25, 1/1 제외) -
각 프로젝트의 마지막 날 그 동안 만든 것을 시연합니다.
-
Java
-
Java API : https://docs.oracle.com/javase/8/docs/api/
-
Java Tutorial : https://wikidocs.net/9112
-
Java Swing Tutorial : http://zetcode.com/tutorials/javaswingtutorial/
-
Java Swing Tutorial : https://www.javatpoint.com/java-swing
-
Java Swing Tutorial : https://www.javacodegeeks.com/swing-tutorials
-
And.. www.google.com is the BEST helpful link.
-
-
C++
-
C++ tutorial : https://modoocode.com/135
-
C++ tutorial : https://www.tutorialspoint.com/cplusplus/index.htm
-
QT Hello World https://www.bogotobogo.com/Qt/Qt5_TutorialHelloWorld.php
-
QT for begineers : https://wiki.qt.io/Qt_for_Beginners
-
QT unofficial tutorial : http://zetcode.com/gui/qt5/
-
QT Reference : https://doc.qt.io/qt-5/reference-overview.html
-
QT Documentation : https://doc.qt.io/
-
QT official tutorial : https://doc.qt.io/qt-5/qtexamplesandtutorials.html
-
And.. www.google.com is the BEST helpful link.
-
-
QT
설치-
다음 링크에서
QT
설치 https://www.qt.io/download-qt-installer -
다음 블로그를 따라하면서
QT
설치를 한다.
-
-
QT
설치 후 QT Creator 를 실행하고 샘플 예제를 컴파일 후 실행-
다음 링크에서
"Our first window"
섹션, 한글버전은"첫번째 윈도우"
섹션의 가이드를 따라해본다.
-
-
다음 가이드로부터
QT
라이브러리의 사용법을 최대한 익힌다.QT
공식 가이드와 다른 사설 가이드도 참조한다.-
또 다른 가이드 참조자료
-
QT official
https://doc.qt.io/qt-5/qtexamplesandtutorials.html -
QT official
https://wiki.qt.io/Qt_for_Beginners -
QT unofficial
https://www.bogotobogo.com/Qt/Qt5_TutorialHelloWorld.php
-
-
C++
에 대한 기초가 부족한 학생은 다음 링크에서 클래스의 상속까지는 공부해줍니다.-
[한글자료] 6-1 상속까지 : https://modoocode.com/135
-
[영어자료] C++ Inheritance까지 : https://www.tutorialspoint.com/cplusplus/index.htm
-
-
Java
설치-
다음 링크에서 자신의 OS(
Windows
orMac OS
) 에 맞게jdk
다운로드 후 설치 -
다음 블로그 글을 따라가면서 설치한다.
-
[Windows] https://dzzienki.tistory.com/3
-
[Mac OS] https://aileen93.tistory.com/43
-
-
-
Visual Studio Code
설치 (Atom
,Notepad++
,Vim
등의 텍스트 에디터를 이미 사용하고 있다면 설치하지 않아도 됨!)-
다음 링크에서 자신의 OS(
Windows
orMac OS
) 에 맞게vscode
를 다운로드 후 설치 -
Visual Studio Code
로 다음과 같은Test.java
파일을 편집한다.class Test { public static void main(String args[]) { System.out.println("TEST"); } }
-
다음 명령어로 컴파일 후 실행해본다.
$ javac Test.java $ java Test
-
-
Java
설치 확인 및Java Swing
라이브러리 연습-
다음 링크의 "First programs" 의 실습을 따라해본다.
-
-
다음 가이드로부터
Java Swing
의 사용법을 최대한 익힌다. -
Java
에 대한 기초가 부족한 학생은 다음 링크에서 05-5 생성자 까지는 공부해줍니다.
-
CLI : Command Line Interface 의 약자로 텍스트 기반 인터페이스를 제공하는 프로그램을 뜻합니다.
-
GUI : Graphical User Interface 의 약자로 그래픽 기반 인터페이스를 제공하는 프로그램을 뜻합니다.