我是C ++的初学者。所以请忍受我
我尝试为温度传感器编写代码,该代码应将值发布到API。
我无法实例化我的课程ApiClient
。
我总是会遇到这些错误:
我的代码如下所示(略显苗条,以方便阅读):
main.cpp
#include <ApiClient.h>
ApiClient api;
void setup()
{
Serial.begin(115200);
String apiUrl = "https://myapi.com/api";
api(apiUrl); // ERROR: raises call of an object of a class type without appropriate operator() or conversion functions to pointer-to-function type
}
void loop()
{
String temp = "49";
api.sendValue("temperature", temp);
}
ApiClient.h
#ifndef WebClient_h
#define WebClient_h
#include <Arduino.h>
#include <WiFi.h>
#include <esp_wps.h>
#include <HTTPClient.h>
class ApiClient
{
public:
ApiClient(); // this is only added for testing
ApiClient(String apiUrl); // it should always instanciate with url
void sendValue(String key, String value);
String _apiUrl;
private:
};
#endif
ApiClient.cpp
#include <ApiClient.h>
String _apiUrl;
HTTPClient http;
ApiClient::ApiClient(String apiUrl) // IDE says: "no instance of overloaded function "ApiClient::ApiClient" matches the specified type"
{
this->_apiUrl = apiUrl;
// some stuff to establish a connection
}
答案 0 :(得分:0)
您正在尝试在已构造的对象上调用构造函数。
此行失败:
api(apiUrl);
您尝试的调用失败,因为编译器正在寻找以下功能之一:
return_type APIClient::operator()(const String&);
return_type APIClient::operator()(String);
return_type APIClient::operator()(String&);
如果要调用构造函数,则您的声明应为声明。
ApiClient api(apiUrl);
// or better in c++11:
APIClient api{ apiUrl };
或者,您可以在ApiClient中创建一个初始化程序,该初始化程序将单个String作为参数,如下所示:
class ApiClient
{
public:
ApiClient() { ...}
ApiClient(const String& s) { Initialize(s); }
Initialize(const String& s) { do the work }
...
};
在类中同时提供一步骤和两步骤的初始化API时请务必小心。使用新的字符串重新初始化时,您将需要适当的重置功能以避免混淆。