在類中聲明和定義的靜態常量變量。如何在同一個項目的另一個班級的私人訪問中訪問它。可能嗎?在另一個類中訪問靜態常量。
//in some header file
Class A{
public:
//some data
private:
static const uint8_t AVar =1;
//other data
};
//in some another header file
Class B{
static const Bvar;
};
//here inside Class B it possible to give Bvar = AVar ? If yes, How ?
請忽視的數字1),2),3)等。 –
'朋友'是你的朋友:)但如果可能的話,我會避免這種情況。 –