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

  • Home
  • SEARCH
  • 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 185219
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T15:25:53+00:00 2026-05-11T15:25:53+00:00

I had the following C++ code, where the argument to my constructor in the

  • 0

I had the following C++ code, where the argument to my constructor in the declaration had different constness than the definition of the constructor.

//testClass.hpp class testClass {   public:      testClass(const int *x); };  //testClass.cpp testClass::testClass(const int * const x) {} 

I was able to compile this with no warnings using g++, should this code compile or at least give some warnings? It turns out that the built-in C++ compiler on 64 bit solaris gave me a linker error, which is how I noticed that there was an issue.

What is the rule on matching arguments in this case? Is it up to compilers?

  • 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. 2026-05-11T15:25:54+00:00Added an answer on May 11, 2026 at 3:25 pm

    In cases like this, the const specifier is allowed to be ommitted from the declaration because it doesn’t change anything for the caller.

    It matters only to the context of the implementation details. So that’s why it is on the definition but not the declaration.

    Example:

    //Both f and g have the same signature void f(int x); void g(const int x);  void f(const int x)//this is allowed { }  void g(const int x) { } 

    Anyone calling f won’t care that you are going to treat it as const because it is your own copy of the variable.

    With int * const x, it is the same, it is your copy of the pointer. Whether you can point to something else doesn’t matter to the caller.

    If you ommitted the first const though in const int * const, then that would make a difference because it matters to the caller if you change the data it is pointing to.

    Reference: The C++ Standard, 8.3.5 para 3:

    ‘Any cv-qualifier modifying a parameter type is deleted … Such cv-qualifiers affect only the definition of the parameter with the body of the function; they do not affect the function type’

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

Sidebar

Ask A Question

Stats

  • Questions 134k
  • Answers 134k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You really shouldn't try to check for non-correct PHP files… May 12, 2026 at 6:49 am
  • Editorial Team
    Editorial Team added an answer Use JavaScript objects as associative arrays. Associative Array: In simple… May 12, 2026 at 6:49 am
  • Editorial Team
    Editorial Team added an answer It works just fine, I just hit F12 and it… May 12, 2026 at 6:49 am

Related Questions

I'm a Java rookie and I was wondering, if I have the following typical
I recently took a class at school where we had to learn Scheme to
In an answer to Is it safe to store objects of a class which
Some time ago I started a project in which I needed to do the

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.