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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:43:09+00:00 2026-05-12T06:43:09+00:00

Possible Duplicate: Why are references not reseatable in C++ I am trying to more

  • 0

Possible Duplicate:
Why are references not reseatable in C++

I am trying to more or less swap two reference variables (as practice, I could have swapped the actual variables). I tried doing this by making a temporary variable and making one of the references equal the other, but this got shot down by the compiler. Here is an example:

void Foo()
{
   //code
   int& ref1 = a;
   int& ref2 = b;
   int temp;

   temp = ref1;
   ref1 = ref2;
   ref2 = temp;

   //or, better yet
   std::swap(ref1, ref2);
}

I got an error, and looked on the faq lite. It details that they cannot be reseated, but does not explain why. Why?

Here is a link to the Faq Lite for reference (<—, get it?).

  • 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-12T06:43:09+00:00Added an answer on May 12, 2026 at 6:43 am

    Because there is no syntax to do it:

    int x = 0;
    int y = 1;
    int & r = x;
    

    Now if I say:

    r = y;
    

    I assign the value of y to x. If I wanted to reseat I would need some special syntax:

    r @= y;    // maybe?
    

    As the main reason for using references is as parameters and return types of functions, where this is not an issue, it didn’t seem to C++’s designers that this was a path worth going down.

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

Sidebar

Related Questions

Possible Duplicate: Reading dll.config (not app.config!) from a plugin module. I have two different
Possible Duplicate: Error: could not find function … in R I find various references
Possible Duplicate: How can I have references between two classes in Objective-C? Objective-C #import
Possible Duplicate: C++: When to use References vs. Pointers Could operator overloading have worked
Possible Duplicate: Object reference not set to an instance of an object errors when
Possible Duplicate: pass by reference not working I was going through some of the
Possible Duplicate: Reference - What does this symbol mean in PHP? I have a
Possible Duplicate: Reference unit tests for common data structures? I'm trying to implement the
Possible Duplicate: Why ‘this’ is a pointer and not a reference? Is there any
Possible Duplicate: Is Java pass by reference? I have a question about passing by

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.