차이
문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
activity:public:2021:cpp:210817 [2021/08/16 20:18:07] – [2.3 cmath] namupc13 | activity:public:2021:cpp:210817 [2021/08/18 12:08:16] (현재) – [C++ 스터디 #14: 헤더파일] bkparks12 | ||
---|---|---|---|
줄 1: | 줄 1: | ||
+ | ======C++ 스터디 #14: 헤더파일====== | ||
+ | | 시간 | 2021년 8월 17일 화요일 20:00 ~ 22:00 | | ||
+ | | 장소 | ZOOM | | ||
+ | | 참가자 | - | | ||
+ | {{youtube> | ||
+ | =====1. 헤더 파일===== | ||
+ | ==== 1.1 헤더 파일이란? | ||
+ | 헤더 파일이란 컴파일러에 의해 다른 소스 파일에 자동으로 포함된 소스 코드의 파일을 말한다. 일반적으로 자주 사용하는 기능들을 기능들을 미리 함수로 선언하고 정의해 놓았다. \\ | ||
+ | 대표적으로 우리가 지금까지 써왔던 #include < | ||
+ | |||
+ | ==== 1.2 std 접두어 ==== | ||
+ | 표준 라이브러리에 있는 함수나 변수는 std 표준 네임스페이스에 포함되어 있다. 그래서 표준 라이브러리를 사용할때는 std:: 접두사를 붙여야 한다. | ||
+ | <sxh cpp> | ||
+ | # | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | std::cout << "Hello world!" | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | 우리가 지금까지 사용했던 '' | ||
+ | 이를 이용하면 다음과 같이 코드를 바꿀 수 있다. | ||
+ | |||
+ | <sxh cpp> | ||
+ | # | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | cout << "Hello world!" | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== 2. 자주 사용하는 헤더 파일 ===== | ||
+ | ==== 2.1 iostream ==== | ||
+ | 지금까지 많이 써 왔던 iostream은 C++ 입출력 기본을 제공한다. Input/ | ||
+ | |||
+ | <sxh cpp> | ||
+ | # | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | cout << "Hello world!" | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==== 2.2 string.h ==== | ||
+ | string.h은 C++ 표준 문자열 클래스를 제공한다. 메모리 블록이나 문자열을 다룰 수 있는 함수들을 포함하고 있다. | ||
+ | |||
+ | <sxh cpp> | ||
+ | # | ||
+ | # | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | char str1[] = " | ||
+ | char str2[100]; | ||
+ | |||
+ | strcpy_s(str2, | ||
+ | cout << str2 << endl; | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | ==== 2.3 math.h ==== | ||
+ | cmath는 기초 수식 함수들을 구현하는 C 프로그래밍 언어의 표준 라이브러리 안의 함수들의 모임이다. | ||
+ | |||
+ | <sxh cpp> | ||
+ | # | ||
+ | # | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | int num1 = 5; | ||
+ | int num2 = pow(num1, 2); | ||
+ | | ||
+ | cout << num2 << " " << sqrt(num2) << endl; | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==== 2.4 time.h ==== | ||
+ | time.h은 시간과 날짜를 얻거나 조작하는 함수들을 포함하고 있다. | ||
+ | |||
+ | <sxh cpp> | ||
+ | #include < | ||
+ | #include < | ||
+ | #include < | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | cout << time(NULL) << endl; | ||
+ | |||
+ | srand((unsigned int)time(NULL)); | ||
+ | cout << rand() % 10 << endl; | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==== 2.5 stdlib.h ==== | ||
+ | stdlib.h는 동적 메모리 할당을 위한 수동 메모리 관리를 수행한다. malloc, free, new, delete 등의 함수를 포함한다. | ||
+ | |||
+ | <sxh cpp> | ||
+ | # | ||
+ | # | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | int* p; | ||
+ | p = new int; | ||
+ | |||
+ | delete p; | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==== 2.6 windows.h ==== | ||
+ | windows.h는 윈도우 개발자들이 필요한 모든 매크로들, | ||
+ | |||
+ | <sxh cpp> | ||
+ | # | ||
+ | # | ||
+ | using namespace std; | ||
+ | |||
+ | class Circle | ||
+ | { | ||
+ | public: | ||
+ | Circle(int xval, int yval, int r); | ||
+ | void draw(); | ||
+ | void move(); | ||
+ | |||
+ | private: | ||
+ | int x, y, radius; | ||
+ | }; | ||
+ | |||
+ | Circle:: | ||
+ | : x(xval), y(yval), radius(r) | ||
+ | { | ||
+ | |||
+ | } | ||
+ | |||
+ | void Circle:: | ||
+ | { | ||
+ | HDC hdc = GetWindowDC(GetForegroundWindow()); | ||
+ | Ellipse(hdc, | ||
+ | } | ||
+ | |||
+ | void Circle:: | ||
+ | { | ||
+ | x += rand() % 50; | ||
+ | } | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | Circle c1(100, 100, 50); | ||
+ | Circle c2(100, 200, 40); | ||
+ | |||
+ | for (int i = 0; i < 20; i++) | ||
+ | { | ||
+ | c1.move(); | ||
+ | c1.draw(); | ||
+ | c2.move(); | ||
+ | c2.draw(); | ||
+ | Sleep(1000); | ||
+ | } | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ===== 3. 원하는 헤더 파일 만들고 사용하기 ===== | ||
+ | ==== 3.1 개요 ==== | ||
+ | 클래스를 외부에 정의하면 '' | ||
+ | ==== 3.2 내가 만든 클래스를 헤더 파일로 사용하기 ==== | ||
+ | 내가 만든 클래스를 헤더 파일로 사용하는 예를 Car 클래스를 통해 살펴보자. \\ | ||
+ | \\ | ||
+ | ''< | ||
+ | <sxh cpp> | ||
+ | # | ||
+ | # | ||
+ | using namespace std; | ||
+ | |||
+ | class Car | ||
+ | { | ||
+ | int speed; | ||
+ | int gear; | ||
+ | string color; | ||
+ | |||
+ | public : | ||
+ | int getSpeed(); | ||
+ | void setSpeed(int s); | ||
+ | }; | ||
+ | </ | ||
+ | 먼저 이렇게 car.h 헤더파일을 선언해준다. car.h에는 클래스의 선언이 들어간다. \\ | ||
+ | 이후 멤버 함수 getSpeed()와 setSpeed(int s)는 별도의 소스 파일인 car.cpp에서 정의 할 수 있다. 이때, car.cpp에는 car.h를 반드시 포함하여야 하고 #include car.h 를 한 위치에 car.h가 들어가게 된다.\\ | ||
+ | car.h는 ''# | ||
+ | \\ | ||
+ | ''< | ||
+ | <sxh cpp> | ||
+ | #include " | ||
+ | |||
+ | int Car:: | ||
+ | { | ||
+ | return speed; | ||
+ | } | ||
+ | |||
+ | void Car:: | ||
+ | { | ||
+ | speed = s; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | 이후 다른 소스 파일에서 Car 클래스를 사용하려면 헤더 파일 car.h만 포함하면 된다. 새로운 소스 파일인 main.cpp에서 Car 클래스를 사용하는 것을 살펴보자. \\ | ||
+ | \\ | ||
+ | ''< | ||
+ | <sxh cpp> | ||
+ | #include " | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | Car myCar; | ||
+ | |||
+ | myCar.setSpeed(100); | ||
+ | cout << " | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | 이들은 다음 사진과 같이 서로 다른 소스 파일이 된다. \\ | ||
+ | {{: | ||
+ | \\ | ||
+ | 이렇게 클래스의 선언(car.h)과 구현(car.cpp)을 따로 함으로써 개발할 때 car.h를 여러 소스 파일에서 사용할 수 있게 되었다. | ||
+ |