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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:28:18+00:00 2026-06-08T08:28:18+00:00

Possible Duplicate: Which kind of pointer do I use when? There are many pros

  • 0

Possible Duplicate:
Which kind of pointer do I use when?

There are many pros in favour of C++11’s smart pointers: They are safer, they’re functionality and scope is more abvious etc.

Are the “classic” C like pointers

class C{};
C c;
C* c_p = &c;

obsolete now? Are they even deprecated? Or are there use cases where C pointers still make sense?

edit: The code snippet with a smart pointer:

class C{};
C c;
std::shared_ptr<C> c_p(new C());

edit: Thanks for pointing out the duplicate. From Xeo’s answer there:

Use dumb pointers (raw pointers) or references for non-owning references to resources and when >you know that the resource will outlive the referencing object / scope. Prefer references and >use raw pointers when you need either nullability or resettability.

If that’s all that there is, I accept that this question has been closed.

  • 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-08T08:28:20+00:00Added an answer on June 8, 2026 at 8:28 am

    There are use cases where raw pointers make sense.

    Raw pointers in modern code are ‘non-owning’ pointers. This means the code shouldn’t do anything that requires or takes ownership of the pointed to object. For example it shouldn’t be deleted, used to construct an owning smart pointer, or saved beyond the current context.

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

Sidebar

Related Questions

Possible Duplicate: Which kind of pointer do I use when? I read that std::auto_ptr
Possible Duplicate: Which style of Ruby string quoting do you favour? Is there a
Possible Duplicate: Android Layout and positioning issue Design layout which support for all kind
Possible Duplicate: Is there a tool which lists exported methods from a DLL? I
Possible Duplicate: Duplicate keys in .NET dictionaries? I want to use a kind of
Possible Duplicate: Duplicate keys in .NET dictionaries? I want to use a kind of
Possible Duplicate: Which I/O library do you use in your C++ code? I asked
Possible Duplicate: Which version of Perl should I use on Windows? I want to
Possible Duplicate: Which type of quotes we should use in css background url (“…”)?
Possible Duplicate: How do I detect which kind of JRE is installed — 32bit

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.