5 c++ coding-style naming-conventions
C++中是否存在私有虚函数的通用命名约定?我见过的约定,如do_something(...),something_vfunc(...)等哪一个惯例通常是在C++项目中使用?
do_something(...)
something_vfunc(...)
eca*_*mur 3
标准中使用的约定(例如在许多标准中std::numpunct)是 是do_something一个protected virtual方法,并且something是调用它的public非方法。virtual
std::numpunct
do_something
protected
virtual
something
public
归档时间:
13 年,3 月 前
查看次数:
722 次
最近记录: