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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:45:24+00:00 2026-05-26T23:45:24+00:00

I was wondering how using an & to access a certain memory location changed

  • 0

I was wondering how using an & to access a certain memory location changed the nature of a function call. For example, if I had written a function to set the radius of a circle

//True, if success, False if radius is off-screen
bool SetRadiusCircle(Circle &b, int r)

This was an example given in the assignment my professor gave me. I just wanted to know how the “&” he included in the sample function call differed from simply using Circle b.

  • 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-26T23:45:25+00:00Added an answer on May 26, 2026 at 11:45 pm

    Yes. If you use &, you are passing the circle as a reference. If you don’t use it, you are passing a copy of the circle object, copy that gets created by the compiler for you. This triggers the class copy constructor (either the one you defined, or the default one, which is a bitwise copy).

    With a reference, you are not copying the object. You are instead getting the object you had in the caller. It’s equivalent of having an alias to the original object, and any change you perform will apply to the object passed. In the case of a copy, any change to the object is lost at the end of the call, because the copy is destroyed.

    When you use a reference, the internal use of that argument requires you to use the . to access that object’s members (e.g. b.getRadius()). If you defined your function to accept a pointer instead (func (Circle *bPtr)) then you must use the -> (e.g. bPtr->getRadius()). Using a pointer is different from using a reference, but the final, practical effect is the same: you get to manipulate the original object, not a copy.

    Note that this is valid in the function definition. An & used in another context gives you the pointer where something resides. They are not the same, although they use the same symbol.

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

Sidebar

Related Questions

I'm working on writing a web application using php & mysql, and was wondering
I was wondering whether using a Belt and Braces (Suspenders) approach to programming -
I was wondering if using HTML entities in meta tags (like keywords and description)
I'm wondering if using the following Javascript code is reliable: if (!document.cookie) { alert('Cookies
I've been wondering if using long descriptive variable names in WinForms C# matters for
I am wondering about using the abstraction in Zend Db RowSet instead of joins,
I was wondering if when using the datagridview control you can remove the thing
Wondering if anybody out there has any success in using the JDEdwards XMLInterop functionality.
wondering if some of you know what javascript framework facebook is using ? Thanks
Just wondering if there are any pitfalls using .net as the extension for a

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.