show/hide this revision's text 5 tags
show/hide this revision's text 4 added 157 characters in body; edited title

Why can`t can't I use static members, for example static structures, in my classes in VS2008?

When I wrote such write code like this in VS 2008:

.h
struct Patterns {
    	string ptCreate;
    	string ptDelete;
    	string ptDrop;
    	string ptUpdate;
    	string ptInsert;
    	string ptSelect;
    };     

class QueryValidate {
    string query;
    string pattern;
    static Patterns pts;
public:
    friend class Query;
    QueryValidate(const string& qr, const string& ptn):
      query(qr), pattern(ptn) {}
    bool validate() {
    	boost::regex rg(pattern);
    	return boost::regex_match(query, rg);
    }
    virtual ~QueryValidate() {}
};

and

I then initialized initialize my structure like thisway:

.cpp
string QueryValidate::pts::ptCreate = "something";
string QueryValidate::pts::ptDelete = "something";
//...

The compiler answeredgives the following errors:

'Patterns': the symbol to the left of a '::' must be a type 'ptSelect' : is not a member of 'QueryValidate'

Why it is as it is? May be

What am I did something doing wrong, but it seems to me that it is the imbalance between c++ standard and ? Is this a problem with Visual Studio . or with my code? I know that static members except for const one`s ones must be defined outside the class it they were declared in.

show/hide this revision's text 3 Formatting

when

When I wrote such code in VS 2008:

.h
struct Patterns {
string ptCreate;
string ptDelete;
string ptDrop;
string ptUpdate;
string ptInsert;
string ptSelect;
};

class QueryValidate {
    string query;
    string pattern;
    static Patterns pts;
public:
    friend class Query;
    QueryValidate(const string& qr, const string& ptn):
        query(qr), pattern(ptn) {}
    bool validate() {
        boost::regex rg(pattern);
        return boost::regex_match(query, rg);
    }
    virtual ~QueryValidate() {}
};

and then initialized my structure this way:

.cpp

string QueryValidate::pts::ptCreate = "something";
string QueryValidate::pts::ptDelete = "something";

//...

compiler answered:

'Patterns': the symbol to the left of a '::' must be a type
'ptSelect' : is not a member of 'QueryValidate'

Why it is as it is? May be I did something wrong, but it seems to me that it is the imbalance between c++ standard and Visual Studio. I know that static members except for const one`s must be defined outside the class it were declared in.

show/hide this revision's text 2 added 16 characters in body
show/hide this revision's text 1