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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:06:17+00:00 2026-05-30T19:06:17+00:00

Possible Duplicate: Do the parentheses after the type name make a difference with new?

  • 0

Possible Duplicate:
Do the parentheses after the type name make a difference with new?
What do the following phrases mean in C++: zero-, default- and value-initialization?

I’ve used vector without any problem but i still have a question about it.
I always use code like this,

vector<int>* v1 = new vector<int>;

so, can i use:

vector<int>* v2 = new vector<int>(); 

I know what () does, but whats the difference? In v1, does vector ever initialize any integer?

  • 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-30T19:06:18+00:00Added an answer on May 30, 2026 at 7:06 pm

    First your question: new calls the default constructor, you don’t need to do this “manually”.
    But then: Try to use value types as often as possible in C++. They are not only faster, but also easier and safer, because the destructor gets automaticly called when leaving the scope.
    So just write

    std::vector<int> v; // Calls default constructor
    

    If you really need the heap, try using smart pointers such as shared_ptr and unique_ptr, this way you can’t forget to call delete. (And delete also calls the destructor, no need to do this manually.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Do the parentheses after the type name make a difference with new?
Possible Duplicate: Do the parentheses after the type name make a difference with new?
Possible Duplicate: Do the parentheses after the type name make a difference with new?
Possible Duplicate: Do the parentheses after the type name make a difference with new?
Possible Duplicate: Do the parentheses after the type name make a difference with new?
Possible Duplicate: What do parentheses surrounding a JavaScript object/function/class declaration mean? What does this
Possible Duplicate: What do parentheses surrounding a JavaScript object/function/class declaration mean? I have found
Possible Duplicate: What's the role of the parentheses in the following piece of code?
Possible Duplicate: new MyObject(); vs new MyObject; What is the difference between new Object
Possible Duplicate: What does the text inside parentheses in @interface and @implementation directives mean?

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.