C语言这个错误时什么意思expected primary-expression before ✀.✀ token

2024-11-23 02:21:32
推荐回答(5个)
回答(1):

expected primary-expression before '.' token是指缺少申明,需要申明变量。

解决方法:

LOG(INFO)的头函数为:logging,新建文件my_dbclient.h  my_dbclient.cpp 作为自定义的接口,具体实现如下:

my_dbclient.h

[cpp] view plain copy

#include   

#include  

#include  

//注意:这里并不包含dbclient.h ,否则就白包装了。。  

//定义DBClientConnection,Query,避免undefine 错误  

namespace mongo {  

class DBClientConnection;  

class Query;  

class my_dbclient{  

private:  

mongo::DBClientConnection * m_newsdb_conn;  

public:  

my_dbclient();  

~my_dbclient();  

private:  

bool QueryNewsDB( mongo::Query condition, std::vector&news_vec );

回答(2):

int print(struct student) 改为 int print(struct student stu),
然后 student.num 改为 stu.num,其余类似修改。
. 前面应该是结构变量名,而不是结构类型名。

回答(3):

int Print(struct student); // 这是函数声明,只需提供形参类型,不用提供参数名称
int Print(struct student stu) { // 但在定义函数时,二者都必须具备
......
}

回答(4):

用分离的语句指定各成员变量的值

回答(5):

你调用的函数在main后面定义的,必须在main前面申明