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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T05:21:10+00:00 2026-06-13T05:21:10+00:00

In Java, when I do Foo bar = new Foo(); bar will be a

  • 0

In Java, when I do

Foo bar = new Foo();

bar will be a variable containing the address of the newly constructed object. My professor call it a reference variable

The previous line is equivalent to this in C++:

Foo *bar = new Foo();

here, bar is a pointer to the object

So, is it true that a reference variable in Java is basically a pointer?

Also, when I do this in C++:

Foo bar;

is bar also a pointer? If not, then does that mean there is a difference in memory structure between

Foo bar;

and

Foo *bar = new Foo();

?

  • 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-13T05:21:11+00:00Added an answer on June 13, 2026 at 5:21 am

    Pointers in C++ behave similarly to references in Java.

    However, Foo bar; is very different from Foo *bar = new Foo();. The first creates an instance of Foo with automatic duration. It will be destroyed at the end of the block in which it is created. The second creates a dynamically allocated instance of Foo. It will stick around until it is explicitly deleted.

    The first can’t be used if you want the object to exist after the function returns. If you use a pointer or a reference to it after the function returns, bad things will happen. In that situation, you have to use the second form.

    The advantage of the first form is that you don’t have to worry about memory management. It will be automatically destroyed at the end of its scope. With the second form, you have to manually delete it, or manage it with a smart pointer of some kind.

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

Sidebar

Related Questions

What's the Java equivalent of C#'s: enum Foo { Bar = 0, Baz =
Foo.java public class Foo{ public int i = 0; } Bar.scala class Bar() extends
So in java, say you have a non-static method 'bar()' in an class 'Foo'.
In Java, apparently, String s = foo is preferred over String s = new
I come from the Java world, so to me it's all object.foo() , but
I'm working with some code where one object, foo, is creating another object, bar,
I have a TreeSet containing wrappers which store a Foo object at a certain
In Scala, we can write object Foo { def bar = {} } How
I have made a front end for a program which test java (foo.class) binary
Consider the following Java class: public class Foo { public static void doStuff() {

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.