Consider:
// In Vector2.h
class Vector2
{
public:
// returns the degrees in radians
static double calcDir(double x, double y);
}
// In Vector2.cpp
double Vector2::calcDir(double x, double y)
{
double rad = ...;
return rad;
}
Why isn't the keyword static required in the signature in Vector2.cpp? When I try this, it produces an error:
static double Vector2::calcDir(double x, double y)
It seems inconsistent to me. All other parts of the method signature are required to be repeated in the .cpp file (return type, method name (duh), names and types of args, const-ness). I don't like not knowing at a glance whether a method is static or not (when looking at the implementation).
Is there a reason this is not only not required, but forbidden?

virtual, by the way. – Nathan Ernst Jan 11 '12 at 20:33virtualis not required to be repeated as well. Only things that take part in overload resolution (and the return type) have to be repeated. – pmr Jan 11 '12 at 20:35Static()andinstance()– justin Jan 11 '12 at 20:37/*static*/ class::double blabla(). Same for arguments with default values.class:fun x(y = 0)isn't allowed in the defintion either, so I writeclass::fun x(y /*= 0*/). – Mr Lister Jan 11 '12 at 20:46