#加前缀

类的数据成员加前缀 m_(表示 member)

类的数据成员加前缀m_(表示member),这样可以避免数据成员与成员函数的参数同名。例如:voidObject::SetValue(intwidth,intheight){m_width=width;m_height=height;} 1#include<iostream>2#include&l...

如果不得已需要全局变量,则使全局变量加前缀 g_(表示 global)

如果不得已需要全局变量,则使全局变量加前缀g_(表示global)。例如:intg_howManyPeople;//全局变量intg_howMuchMoney;//全局变量 1#include<iostream>2#include<string.h>3/*runthisprogramu...

静态变量加前缀 s_(表示 static)

静态变量加前缀s_(表示static)。例如:voidInit(…){staticints_initValue;//静态变量…} 1#include<iostream>23/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("...

aspx页面控件id上自动加前缀

公司的一个.net项目,使用的传统aspx页面开发,每个控件上自动加了前缀,最初以为是extjs.net自带的功能,后来研究发现,主要是因为内部使用了母版页。<asp:ContentID="Content2"ContentPlaceHolderID="pre"runat="server">这样所有服务端控件...