readability-convert-member-functions-to-static¶
查找可以被设置为 static
的非静态成员函数,因为这些函数不使用 this
。
在应用检查建议的修改后,再次运行检查可能会发现更多将成员函数标记为 static
的机会。
在将成员函数设为 static
后,您可能想要运行检查 readability-static-accessed-through-instance 来替换像 Instance.method()
这样的调用,使用 Class::method()
。