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 9221945
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T03:41:52+00:00 2026-06-18T03:41:52+00:00

#include <vector> class A { private: std::vector<int> v_; public: A(int size = 100, int

  • 0
#include <vector>

class A {
private:
    std::vector<int> v_;
public:
    A(int size = 100, int init_val = 100){
        for(int i=0; i<size; i++)
            v_.push_back(init_val);
    }
};

In the main, if I do:

A a(1000, 100);

What really happens? It is the first time I’ve seen hardcoded parameters in a constructor!

  • 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-06-18T03:41:53+00:00Added an answer on June 18, 2026 at 3:41 am

    The passed values will simply replace default values of parameters with the passed ones.

    • A definition A a; will result in call to A::A(100, 100)
    • A definition A a(5); will result in call to A::A(5, 100)
    • A definition A a(5, 6); will result in call to A::A(5, 6)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

#include <vector> using std::vector; class A { public: A() { buf.push_back(65); buf.push_back(66); buf.push_back(67); }
#include <stdlib.h> #include <iostream> #include <vector> #include <string> class A { public: std::string s;
#include <iostream> #include <vector> #include <algorithm> using namespace std; class A { public :
When compiling : #include <vector> template<class T> class foo { void bar() { std::vector<T>
#include <iostream> using namespace std; // This first class contains a vector and a
When trying to compile this code: #include <iostream> #include <vector> using namespace std; class
#include <iostream> #include <algorithm> #include <vector> #include <boost/array.hpp> #include <boost/bind.hpp> int main() { boost::array<int,
Could you please check out this piece of code: #include <vector> class A {
Why this code does not compile (Cygwin)? #include <vector> template <class Ttile> class Tilemap
Suppose I have a class similar to the following: #include <vector> class element {

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.