C++中是否存在私有虚函数的通用命名约定?

5 c++ coding-style naming-conventions

C++中是否存在私有虚函数的通用命名约定?我见过的约定,如do_something(...),something_vfunc(...)等哪一个惯例通常是在C++项目中使用?

eca*_*mur 3

标准中使用的约定(例如在许多标准中std::numpunct)是 是do_something一个protected virtual方法,并且something是调用它的public非方法。virtual