C ++ / Class编译和字符串属性:“期望`”'在'='标记之前'

时间:2011-12-14 14:35:01

标签: c++ string class

我正在尝试使用套接字编译一类邮件发送

但是,我在编译过程中遇到了这个错误:

  

预期`)'在'='标记

之前

在我声明构造函数的行:

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
          } 
};

4 个答案:

答案 0 :(得分:5)

您需要指定构造函数参数的类型,以及为您的成员分配传递的值。

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"?

答案 1 :(得分:1)

Mail(ipSMTP="serveurmail.com", port=25)

应该是

Mail( std::string ipSMTP="serveurmail.com", int port=25)

您还应该从头文件中删除using指令:

using namespace std;

这是一种不好的做法,因为它会在包含标题的任何地方使用std的内容填充全局命名空间。

答案 2 :(得分:0)

您需要:(1)指定参数的类型; (2)初始化相关数据成员:

Mail(std::string ipSMTP="serveurmail.com", int port=25)
: ipSMTP(ipSMTP), port(port)
{
...

答案 3 :(得分:0)

参数有类型。由于您可能希望初始化成员变量,因此需要类似

的内容
Mail(const string& ipsmtp="serveurmail.com",int p=25) : ipSMTP(ipsmtp), port(p) {
    ...
}