Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Qt が を置き換えることにした理由はありますか? と ->? 技術的な理由はありますか?
ui->statusBar->setSizeGripEnabled(false);
それ以外の
ui.statusBar.setSizeGripEnabled(false);
?
これは Qt の選択ではありませんが、C++ で適切な設計が機能する方法です。->オブジェクトへのポインターを逆参照して、そのメンバーにアクセスします。ポインターを渡すことは、オブジェクトへのアクセスの最もクリーンな方法である傾向があります。
->