This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes How to get address of String object? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "How to get address of String object?" Watch "How to get address of String object?" New topic
Author

How to get address of String object?

Sam Drake
Ranch Hand

Joined: Jun 05, 2003
Posts: 33
Hi,
Say I have the following statement:
String s1 = "abc";
How can I get the address of the memory for the variable s1?
I'm a beginner with a C background.
Drake.
Ernest Friedman-Hill
author and iconoclast
Marshal

Joined: Jul 08, 2003
Posts: 24057
    
  13

You can't, at least not in the Java language (or in any code running on the JVM itself.) Java's pointers aren't addresses. The concept of pointer/address equivalence is not part of the JVM architecture.
In C/C++ code using the Java Native Interface (JNI), which Java code can call out to, you can get a more or less opaque handle to the JVM's data structure representing that String object, but it's not really "a pointer to the String", either.


[Jess in Action][AskingGoodQuestions]
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: How to get address of String object?
 
Similar Threads
Java String pool problem
Garbage Collection
Strings...
Immutability of strings???
How many Objects are garbage collected?