看板 C_and_CPP 關於我們 聯絡資訊
開發平台(Platform): (Ex: VC++, GCC, Linux, ...) Linux (Android) 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...) libstagefright frameworks/av/media/libstagefright/xxx.cpp 問題(Question): 事實上不止這部分程式碼 很多Android C++程式碼,常出現用struct代替class的狀況 偏偏struct裡面又用了建構、解構、private等功能 實在不了解這兩者(class & struct)在此有什麼不同,為何需要交替使用? 有請版上強者協助解惑... Orz -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 123.193.182.212 ※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1456556332.A.513.html ※ 編輯: wudidog (123.193.182.212), 02/27/2016 15:00:24
Caesar08: 在C++裡,struct與class只差在default access specifier 02/27 15:12
Caesar08: struct是public,class是private 02/27 15:12
Clangpp: 看你想不想封裝的問題 02/27 17:02
diabloevagto: 簡單來說,沒差 02/27 19:35
dorgonman: 通常struct只用在是POD的情況下 03/02 01:09
BlazarArc: 1F 說的還有用在繼承中 03/02 12:56