2학년 객체지향프로그래밍 02주차수업

서지현·2021년 10월 11일
0

간단한 C++ Program

  • 문자열 출력
#include <iostream>
using namespace std;
// Single Line Comment
int main() {
 cout << "C++ is better than C. \n";
 return 0;
}

cout << 랑 << as a bit-wise left-shift operator 로써 operator overloading에 해당한다

An example with class

#include <iostream>
using namespace std;
class Person {
 char name[30];
 int age;
public:
 void getdata(void);
 void display(void);
};
void Person::getdata(void) {
 cout << "Enter name: ";
 cin >> name;
 cout << "Enter age: ";
 cin >> age;
}
void Person::display(void) {
 cout << "\nName: " << name << "\nAge: " << age;
}

int main() {
 Person p;
 p.getdata();
 p.display();
 return 0;
}

Person class에 관하여

  • name, age의 2가지 속성을 가짐
  • public 영역의 2개의 함수는 외부에서 접근 가능
  • 외부에서 접근을 못하게 하고 싶은 경우 private, protect 사용

main 함수에서는 인스턴스를 생성후 이를 이용해서 호출할 수 있다

Reference Variables

call-by-reference

void swap(int& a, int& b) {
 int t = a;
 a = b;
 b = t;
}
swap(m, n);

call-by-address

void swap(int* a, int* b){
 int t = *a;
 *a = *b;
 *b = t;
}
swap(&m, &n);

Dynamic Memory Allocation

int* p = new int[10];
int** p2 = new int*[10];
for (int i = 0; i < 10; i++) {
 p2[i] = new int[5];
}
  • p는 크기가 10인 배열 포인터이다
  • p2는 (10,5)짜리 2차원 배열 포인터이다
int* p = new int[10];
delete[] p;
  • 일차원 배열 포인터 메모리 해제
int** p2 = new int*[10];
for (int i = 0; i < 10; i++) {
 p2[i] = new int[5];
}
for (int i = 0; i < 10; i++) {
 delete p2[i];
}
delete[] p2;
  • 이차원 배열 포인터 메모리 해제

Function Overloading

int add(int a, int b) { return a + b; }
int add(int a, int b, int c) { return a + b + c; }
int main(){
 cout << add(5, 10) << endl;
 cout << add(15, 10, 30) << endl;
 return 0;
}

함수이름이 같지만 매개변수가 달라서 다른 기능을 하는 것을 의미함

Inline Function

inline double cube(double a) { return a * a * a; }
int main(){
 double y = cube(3);
 return 0;
}

메모리 비용을 줄이며 더 빠르게 동작할 수 있다
이는 다음코드와 같은 내용이다

int main(){
 double y = 3 * 3 * 3;
 return 0;
}

Default Arguments

  • Default 값은 함수를 선언할 때 구체적으로 할 수 있다
  • Default 값은 오른쪽에서 왼쪽으로 제공되어야 한다
    ex)
  • int func(int a, int b, int c=3); //ok
  • int func(int a=1, int b, int c=3); //not ok
  • int func(int a, int b=2, int c=3); //ok
profile
안녕하세요

0개의 댓글

관련 채용 정보