Having the following class declaration with functions, choose the lines, which have mistakes:
class A {
  void Test() const; // 1
};
void A::Test() const; // 2
void A::Test() const {} // 3

void Test() const; // 4
void Test() const {}  // 5
Explanation
Line // 2 - Declaration of a class-member function is prohibited outside the class declaration.
Lines // 4 and // 5 - normal functions can't have const modifier.

Слідкуй за CodeGalaxy

Мобільний додаток Beta

Get it on Google Play
Зворотній Зв’язок
Cosmo
Зареєструйся Зараз
або Підпишись на майбутні тести