c++클래스 질문좀 하겠습니다 ㅠ
찬바리
cpp파일을헤더파일, cpp파일, 클라이언트 파일로 만들어서 동시에 돌려야하는데, cpp파일을 만들었는데 클래스로 분리하면 자꾸 오류가뜨네요 ㅠㅠ
cpp파일
#include iostream
#include string
using namespace std;
class Fan
{
private:
int speed;
bool on;
double radius;
string color;
public:
Fan()
{
speed = 1;
on = false;
radius = 5;
color = string(blue);
}
int getSpeed()
{
return speed;
}
void setSpeed(int speed)
{
this-speed = speed;
}
bool isOn()
{
return on;
}
void setOn(bool trueOrFalse)
{
this-on = trueOrFalse;
}
double getRadius()
{
return radius;
}
void setRadius(double radius)
{
this-radius = radius;
}
string getColor()
{
return color;
}
void setColor(string color)
{
this-color = color;
}
};
int main()
{
cout First fan properties: endl;
Fan fan;
fan.setSpeed(3);
fan.setRadius(10);
fan.setOn(true);
fan.setColor(yellow);
cout Fan speed: fan.getSpeed() endl;
cout Fan radius: fan.getRadius() endl;
cout Fan on? fan.isOn() endl;
cout Fan color: fan.getColor() endl;
Fan fan1;
fan.setSpeed(2);
fan.setRadius(5);
fan.setOn(false);
fan.setColor(blue);
cout \nSecond fan properties: endl;
cout Fan speed: fan1.getSpeed() endl;
cout Fan radius: fan1.getRadius() endl;
cout Fan on? fan1.isOn() endl;
cout Fan color: fan1.getColor() endl;
return 0;
}
=====================================================================================================//헤더파일
#include string
using namespace std;
class Fan
{
private:
int speed;
bool on;
double radius;
string color;
public:
Fan();
Fan(int speed, bool on, double radius, string color);
int getSpeed();
double getRadius();
bool getOn();
string getColor();
};
//cpp 파일
#include Fan.h
Fan::Fan()
{
speed = 1;
on = false;
radius = 5;
color = string(blue);
}
Fan::Fan(int speed, bool on, double radius, string color)
{
this-speed = speed;
this-on = true || False;
this-radius = radius;
this-color = color;
}
int Speed::getspeed()
{
return speed;
}
double radius::getRadius()
{
return radius;
}
bool on::getOn()
{
return on;
}
string color::getColor()
{
return color;
}
//클라이언트 파일
#include iostream
#include string
#include Fan.h
using namespace std;
int main()
{
cout First fan properties: endl;
Fan fan;
fan.getSpeed(3);
fan.getRadius(10);
fan.getOn(true);
fan.getColor(yellow);
cout Fan speed: fan.getSpeed() endl;
cout Fan radius: fan.getRadius() endl;
cout Fan on? fan.getOn() endl;
cout Fan color: fan.getColor() endl;
Fan fan1;
fan.getSpeed(2);
fan.getRadius(5);
fan.getOn(false);
fan.getColor(blue);
cout \nSecond fan properties: endl;
cout Fan speed: fan1.getSpeed() endl;
cout Fan radius: fan1.getRadius() endl;
cout Fan on? fan1.getOn() endl;
cout Fan color: fan1.getColor() endl;
return 0;
}
클래스를 배운지 얼마 되지 않아서 제가 제데로 나눴는지도 모르겠네요 ㅠㅠ 수정해주시면 감사하겠습니다 ㅠㅠ
-
든해
네ㅠ 감사합니다 ㅠㅠ!!
-
캔서
나눈 cpp의 함수에 :: 앞에 각 클래스명을 붙이는 겁니다 ;; 즉.. int Speed::getspeed() 이게 아니고 int Fan::getspeed() 이 되어야죠.. 그리고 앞으로는.. 오류내용도 같이 올리면 더 다른분들이 이해하기 편하실꺼에요.
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |
2675249 | C책 좀 추천해 주세요 (2) | 딸기우유 | 2024-11-16 |
2675193 | 연습문제 17-1 질문입니다. | 한별나라 | 2024-11-15 |
2675172 | 소스점 | 아이뻐 | 2024-11-15 |