Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6036383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T05:54:58+00:00 2026-05-23T05:54:58+00:00

SockeClient.h file #define SIZE_OF_BUFFER 4096 class SocketClient { public: SocketClient(int cfd); virtual ~SocketClient(); int

  • 0

SockeClient.h file

#define SIZE_OF_BUFFER 4096

class SocketClient {

public:
    SocketClient(int cfd);
    virtual ~SocketClient();

    int recv();
    int getFd();

protected:
    int             m_fd;
    char            *m_buffer;
    vector<char>    m_vbuffer;

};

I was trying to do

vector<char>    m_vbuffer(SIZE_OF_BUFFER);

And I got a syntax error… How do I initialize the vector with size of 4096.
Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T05:54:59+00:00Added an answer on May 23, 2026 at 5:54 am

    Use member-initialization-list, in the constructor’s definition as:

    class SocketClient {
    
    public:
        SocketClient(int cfd) : m_vbuffer(SIZE_OF_BUFFER) 
        {                   //^^^^^^^^^^^^^^^^^^^^^^^^^^^ member-initialization-list
    
             //other code... 
        }
    
    
    protected:
        int             m_fd;
        char            *m_buffer;
        vector<char>    m_vbuffer;
    
    };
    

    You can use member-initialization-list to initialize many members as:

    class A
    {
      std::string s;
      int a;
      int *p;
      A(int x) : s("somestring"), a(x), p(new int[100])
      {
        //other code if any
      }
     ~A()
      {
         delete []p; //must deallocate the memory!
      }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to retrieve object data from an ArrayList; public class Form1 { ArrayList
If I have a client defined as follows:- public interface Client { void send(String
void ServerManager::addWork(SocketClient *clientSocket, vector<char> data){ Work *work = new Work(clientSocket, data); m_workHandler->addWork(work); } Here
In my project , I am using Asynchronous Socket Server As below. for (int
Consider: struct SomethingThatsABase { virtual bool IsChildOne() const { return false; } virtual bool
I have a process that is supposed to ftp a file to a remote
I'm modifying a C source file ( libape-spidermonkey.c ). I include a lib header
I have build a basic .NET server-client infrastructure using TcpListener and SocketClient. It is
I am implementing a simulated b/s stock data system. I am using flex and
EDIT: Ik it is long but does anyone know how to program sockets?? My

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.