От: | Кондор | ||
Дата: | 13.01.09 06:28 | ||
Оценка: |
struct A
{
void f()
{
cout<<"A::f()"<<endl;
}
void f() const
{
cout<<"A::f() const"<<endl;
}
};
int _tmain(int argc, _TCHAR* argv[])
{
A a;
a.f();
return 0;
}