优雅地解决重复的 getter
遇到重复、const 和非常量变量的冗余 getter 方法可能会令人沮丧。考虑这个例子:
class Foobar { public: Something& getSomething(int index); const Something& getSomething(int index) const; };
由于无法从 const 方法调用非 const 版本,因此不可能用另一种方法实现其中一种方法。从非常量版本调用 const 版本需要进行强制转换。
实用的解决方案
虽然没有完美的解决方案,但一种实用的方法是实现通过从 const 版本中丢弃 const 来获得非常量版本。尽管这种方法很简单,但它保证了安全性。由于调用成员函数是非常量的,因此对象也是非常量的,从而允许执行强制转换。
class Foo { public: const int& get() const { // Non-trivial work return foo; } int& get() { return const_cast<int&>(const_cast<const Foo*>(this)->get()); } private: int foo; };
通过利用这种方法,您可以消除重复的 getter 方法的需要并维护您代码的安全性。
以上是如何在 C 中优雅地处理重复的 Getter?的详细内容。更多信息请关注PHP中文网其他相关文章!