開發平台(Platform): (Ex: Win10, Linux, ...)
Linux
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
GCC Mbed for ARM Cortex-M4
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
最近在學習Mbed OS的開發,看了很多官網的sample code,因為之前都使用C沒使用過C++
在看到serial的driver時,sample code的main function直接使用private member?
以前的觀念是private只能被自己的member使用,外部無法直接存取
https://os.mbed.com/docs/mbed-os/v6.3/apis/unbufferedserial.html
裡面的sample
serial_port.baud(9600);
baud是private member卻可以在main裡面直接使用,這樣是正確的嗎?
餵入的資料(Input):
預期的正確結果(Expected Output):
錯誤結果(Wrong Output):
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
class SerialBase : private NonCopyable<SerialBase> {
public:
void baud(int baudrate);
....
}
int main(void)
{
// Set desired properties (9600-8-N-1).
serial_port.baud(9600);
serial_port.format(
/* bits */ 8,
/* parity */ SerialBase::None,
/* stop bit */ 1
);
// Register a callback to process a Rx (receive) interrupt.
serial_port.attach(&on_rx_interrupt, SerialBase::RxIrq);
}
補充說明(Supplement):