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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:09:34+00:00 2026-06-10T02:09:34+00:00

I have a vector with type const std::vector<const Array*> &objects which is passed as

  • 0

I have a vector with type const std::vector<const Array*> &objects which is passed as an argument to the method.

I want to const_cast but I can’t do it for some reason. I have tried:

vector<const Array*> obj = const_cast<const std::vector<const Array*> >(objects);

and some other ways but it keeps complaining.

Any ideas ?

  • 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-10T02:09:35+00:00Added an answer on June 10, 2026 at 2:09 am

    Firstly, don’t. Change your function’s signature to take a non-const reference, you risk UB by doing this:

    const std::vector<const Array*> myData = /* fill */;
    yourFunction(myData); // try to modify my stuff and you get UB!
    

    Now if you are still convinced you have to, for whatever reason (like legacy API), it’s done like this:

    vector<const Array*>& obj = const_cast<std::vector<const Array*>&>(objects);
    

    Now obj and objects refer to the same object, but obj is not const-qualified. At this point, everything is well-defined; it’s only modifying a const object that is UB, so be careful.

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

Sidebar

Related Questions

I have a vector-like class that contains an array of objects of type T
Hey, In C++, I have a vector of type: vector<BaseClass*> myVector; In which, I
I have a class called SparseMatrix which contain a private vector of type Cell.
Background I have a container class which uses vector<std::string> internally. I have provided a
Here is my issue: I have a std::vector<AguiWidgetBase*> which is used to keep track
I have a vector that holds pointers to abstract type Rock : vector<Rock*> rocks;
I have vector< pair<int, int>> myVec (N); I want to have all pairs initialized
I have a vector class and I defined the __mul__ method to multiply a
I have the vector d<-1:100 I want to sample k=3 times from this vector
I have a vector of objects (objects are term nodes that amongst other fields

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.