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++ 中正确设计的工作方式。->取消引用指向对象的指针以访问它的成员。传递指针往往是访问对象的最干净的方法。
->