-> 연산자 : 포인터 변수에 의한 항목 선택
예시 : typedef struct __Point
{
int xpos;
int ypos;
}Point;
Point& PntAdder(const Point &p1, const Point &p2)
{
Point *pptr = new Point;
pptr->xpos = p1.xpos + p2.xpos;
pptr->ypos = p1.ypos + p2.ypos;
return *pptr;
}
구조체 사용
struct Structure {
int a;
char b;
};
struct Structure fors;
fors.a;
fors.b;
예를 들면 C 언어에서는 이렇게 사용 할 수 있다.
C++에서는 struct Structure fors; 문에서 struct를 생략하고 Structure fors;으로 축약하여 사용 할 수 있다.
'C++' 카테고리의 다른 글
C++ MFC 윈도우 프로그램 예제 (0) | 2018.11.22 |
---|---|
MFC 시작하기 (0) | 2018.11.17 |
c++ 난수 생성 (0) | 2017.09.14 |
Visual Studio 2015에서 scanf , strcpy 함수 등의 에러 해결 (0) | 2017.09.12 |
댓글