C++ / 类编译和字符串属性:“在 '=' 标记之前需要 `)'
Posted
技术标签:
【中文标题】C++ / 类编译和字符串属性:“在 \'=\' 标记之前需要 `)\'【英文标题】:C++ / Class compilation and string attribute : "expected `)' before '=' token"C++ / 类编译和字符串属性:“在 '=' 标记之前需要 `)' 【发布时间】:2011-12-14 14:35:01 【问题描述】:我正在尝试使用套接字编译一类邮件发送
但是,我在编译过程中遇到了这个错误:
在 '=' 标记之前应为 `)'
在我声明构造函数的那一行:
Mail(ipSMTP="serveurmail.com", port=25)
我怀疑问题出在 Mail() 构造函数之前声明的两个字符串属性:
这是 mail.h 文件的代码,包含 Mail 类声明:
#if defined (WIN32)
#include <winsock2.h>
typedef int socklen_t;
#elif defined (linux)
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#define INVALID_SOCKET -1
#define SOCKET_ERROR -1
#define closesocket(s) close(s)
typedef int SOCKET;
typedef struct sockaddr_in SOCKADDR_IN;
typedef struct sockaddr SOCKADDR;
#endif
#include <string>
#include <iostream>
using namespace std;
class Mail
private :
public :
SOCKET sock;
SOCKADDR_IN sin;
char buffer[255];
int erreur;
int port;
string message;
string ipSMTP;
Mail(ipSMTP="serveurmail.com", port=25)
#if defined (WIN32)
WSADATA WSAData;
erreur = WSAStartup(MAKEWORD(2,2), &WSAData);
#else
erreur = 0;
#endif
message = "";
/* Création de la socket */
sock = socket(AF_INET, SOCK_STREAM, 0);
/* Configuration de la connexion */
sin.sin_addr.s_addr = inet_addr(ipSMTP.c_str());
sin.sin_family = AF_INET;
sin.sin_port = htons(port);
~Mail()
/* On ferme la socket précédemment ouverte */
closesocket(sock);
#if defined (WIN32)
WSACleanup();
#endif
void envoi()
//Instructions d'envoi d'email par la socket via le SMTP
;
【问题讨论】:
改变你的构造函数 Mail(string ipSMTP="serverurmail.com",string port=25) 是什么让你甚至认为这是正确的 C++ 语法?Mail(string ipSMTP="serveurmail.com",string port=25)
【参考方案1】:
您需要指定构造函数参数的类型,并为您的成员分配传递的值。
Mail(ipSMTP="serveurmail.com", port=25)
应该写成
Mail (string const& ipSMTP = "serveurmail.com", int port =25)
: port (port), ipSMTP (ipSMTP) // constructor initializer list
在上面我们使用构造函数初始化列表分配成员变量,您可以在此处阅读更多信息:
[10.6] Should my constructors use "initialization lists" or "assignment"?
【讨论】:
谢谢大家的帮助,这是我用过的解决方案:string _ipSMTP;诠释_端口; Mail(const string& ipSMTP="localhost", int port = 25) : _ipSMTP(ipSMTP), _port(port) 【参考方案2】:Mail(ipSMTP="serveurmail.com", port=25)
应该是
Mail( std::string ipSMTP="serveurmail.com", int port=25)
您还应该从头文件中删除 using
指令:
using namespace std;
这是一种不好的做法,因为它会在包含标头的任何位置使用 std
的内容填充全局命名空间。
【讨论】:
【参考方案3】:您需要: (1) 指定参数的类型; (2)初始化相关数据成员:
Mail(std::string ipSMTP="serveurmail.com", int port=25)
: ipSMTP(ipSMTP), port(port)
...
【讨论】:
【参考方案4】:参数有类型。由于您可能想要初始化成员变量,因此您需要类似
Mail(const string& ipsmtp="serveurmail.com",int p=25) : ipSMTP(ipsmtp), port(p)
...
【讨论】:
以上是关于C++ / 类编译和字符串属性:“在 '=' 标记之前需要 `)'的主要内容,如果未能解决你的问题,请参考以下文章
C++遍历获得一个类的所有属性名,对该类的实例的所有属性的值 ...~~