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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T00:04:21+00:00 2026-05-29T00:04:21+00:00

motivation for this is that (rarely)I have a need to know that the input

  • 0

motivation for this is that (rarely)I have a need to know that the input parameter of the class constructor or function in general is const. Usually when the class is a helper that “automates” some procedure.
Example:
Is this the OK scoped way to get random element from the container?
If you look at the code it is clear that if the container passed to constructor is changed later class functionality is broken. So is there a way to have a function “demand” const instead of “promise” const.

Example:

int f(const vector<int>& v)
{
    return v.size();
}
int main()
{
    vector<int> v;
    v.push_back(42); // can f be changed to reject v because it is not const 
    cout << f(v);

}
  • 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-29T00:04:40+00:00Added an answer on May 29, 2026 at 12:04 am

    Declare but do not implement a non-const version.

    int f(vector<int>& v);
    

    Attempts to pass a non-const vector will be resolved to this function, and then you will get a linker error because no such function exists.

    Some fancy template games may be able to turn it into a compile-time error.

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

Sidebar

Related Questions

Motivation: I have a function func(const string& s); { //... } of course this
I know that if I write a class, I can definite a custom print
This answer shows that there is a built-in __name__ attribute of a function which
The motivation for this idea is that browser ad requests are often painfully slow
I need to create an alias for my network interface such that it can
I want to build a Python function that calculates, and would like to name
I have been trying to create a simple application that will let the user
First, let me admit that what I know about HTTPS is pretty rudimentary. I
I've looked at the various questions that mention this specific exception ( this question
Edit: Here's a truly simple example. Motivation for this example below. This compiles: {-#

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.