作者ieck (殺手)
看板C_and_CPP
標題[問題] 想請教 標頭檔的問題~!
時間Thu Oct 20 23:27:21 2011
各位高手~ 想來請教 (c++)
先簡略寫一下程式碼 抱歉....
目前有一個class
car.h
#include<ctime>
#include<iostream>
using namespace std;
class CAR{
public:
int no;
int g;
int w;
};
=============================
#include "car.h"
#include <iostream>
#include <cstdlib>
int main()
{
一堆變數;
fun(....); //有個函數 在運算讀檔的資料
cout<<..... ;
}
====================================
car.h裡面的成員 no,g,w 在經過函數的運算後 都有數值了!
想請教語法要怎麼下 才能把no,g,w 這些值輸出呢???
因為想要檢查這些數值對不對???
我知道我整個觀念不太完整 不知道這樣發問清不清楚 ><"
謝謝您~~!!
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.116.96.182
→ x000032001:class裡的東西 private就用getter public用CAR.no 10/20 23:30
推 priv:CAR不是class name嗎,可以這樣寫? 10/20 23:31
→ x000032001:他又沒給我class變數= 3= 總之用.取值 10/20 23:32
推 priv:我怕他照抄啊 10/20 23:33
→ x000032001:不然...一堆變數其中的那個type是CAR的物件.no 10/20 23:33
→ ching1027:看完樓上的解釋 我真的會寫 cout<<CAR.no ><" 10/20 23:53
→ ching1027:請原諒我是初學者 又是門外漢 =.=" 10/20 23:53
推 purpose:按部就班的看書吧,會寫 CAR.no 你一定是跳著看 10/20 23:55
→ ching1027:要再多宣告這個類別的變數才可以取值~! p大誤會我了XD 10/21 00:08