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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T06:12:58+00:00 2026-06-07T06:12:58+00:00

I have a simple question about instantiating an object in C++: If we assume

  • 0

I have a simple question about instantiating an object in C++:
If we assume that my class has a default constructor, then I create the new object like that:

PfAlgorithm object = new PfAlgorithm();

but when I run I get this error:

conversion from ‘PfAlgorithm*’ to non-scalar type ‘ns3::PfAlgorithm’ requested

Can someone explain to me the reason of this error please?
Thank you very much.

  • 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-07T06:12:59+00:00Added an answer on June 7, 2026 at 6:12 am

    The new operator returns a pointer, not a value. So you need to write:

    PfAlgorithm* object = new PfAlgorithm()
    

    Where object is a pointer to the newly allocated PfAlgorithm object. Some simple introductory information about pointers can be found here. However as has been discussed in the comments below, it is almost never a good idea to deal in raw pointers (due to potential issues with memory leaks, issues of ambiguous ownership etc). Read on…

    Having allocated this object on the heap, you need to make sure you delete it when you’re finished with it, otherwise your application will leak memory. In order to make this easier I strongly recoomend you also consider using smart pointers from the boost libraries (or from C++11) to manage your memory.

    Alternatively, as various others have suggested, you can simply do:

    PfAlgorithm object;
    

    And allocate your object on the stack and not have to worry about managing the memory.

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

Sidebar

Related Questions

simple question about intent action naming convention: I have a new service that handles
I have a simple question about the expression in jquery to select a class
I have a simple question, but I'm about 80% sure that the answer to
I have a simple question about creating multiple initialisers within an objective-c class. Basically
I have simple question about .net garbage collection. In the following code I create
I have a simple question about a java map.Suppose I have a map that
I just have one simple question about XSS attack. I know that you can
I'm new to Objective C and I have a simple question about memory management.
I have a (somewhat) simple question about android. I have some classes that contain
I have this rather simple question about Scala. Given that i have to following

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.