返回类型为结构时出现问题
Example.h
class Example {
private:
typedef struct connection_header {
string url;
string method;
};
static connection_header get_connection_header();
};
Example.cpp
connection_header Example::get_connection_header() {
return NULL;
}
我正进入(状态'connection_header' does not name a type
我可以知道为什么会出现这个错误