发布网友 发布时间:2022-04-30 02:43
共5个回答
热心网友 时间:2023-10-08 21:33
expected primary-expression before '.' token是指缺少申明,需要申明变量。
解决方法:
LOG(INFO)的头函数为:logging,新建文件my_dbclient.h my_dbclient.cpp 作为自定义的接口,具体实现如下:
my_dbclient.h
[cpp] view plain copy
<pre name="code" class="cpp">#include <iostream>
#include <vector>
#include <map>
//注意:这里并不包含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<SimpleNewsInfo>&news_vec );
热心网友 时间:2023-10-08 21:34
int print(struct student) 改为 int print(struct student stu),热心网友 时间:2023-10-08 21:34
int Print(struct student); // 这是函数声明,只需提供形参类型,不用提供参数名称热心网友 时间:2023-10-08 21:35
用分离的语句指定各成员变量的值热心网友 时间:2023-10-08 21:36
你调用的函数在main后面定义的,必须在main前面申明