Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (408)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Simple assignment question.  (Read 1056 times)
0 Members and 1 Guest are viewing this topic.
Offline jessewclark

Senior Newbie




Heaven means muzak.


« Posted 2004-01-18 18:06:28 »

I'm trying to examine an array of strings and find out which is the widest.  Here's an approximation of the code I'm using:

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
// The set of texts:

String [] texts = a bunch of texts

Font [] fonts = the fonts of those texts

// A variable to hold the longest line, initially set to the width of the first line:

double longestLine = ( the width of the first line, calculated using the font and the getStringBounds method) ;

// A variable to hold the current width when counting through the texts:

double currentWidth ;

// Now, counting through the texts to find the longest one:

for ( int i=1 ; i < texts.length ; i ++ ) {

     currentWidth =  ( again using getStringBounds, this time to find the width of the current line ) ;

     if ( longestLine < currentWidth )

          longestLine = new Double ( currentWidth ).doubleValue () ;

}




So, here's my assignment question.  What I really want to do in that last line is:

    longestLine = currentWidth ;

except I suspect that will make longestLine and currentWidth both pointers to the same variable, and thus longestLine will change whenever currentWidth changes.  That's not what I want.  But using "new Double ( currentWidth ).doubleValue ()" seems like a really dumb way to do things.  I mean, really: creating a Double from a double so that I can get a new double?  That seems really roundabout.  Is there a simpler way to do the same thing?
Offline princec
« League of Dukes »

JGO Kernel


Medals: 196
Projects: 3


Eh? Who? What? ... Me?


« Reply #1 - Posted 2004-01-18 18:23:53 »

You have become madly confused about how primitives work. It doesn't make a reference to any data at all. It just copies that value into the variable, just like you probably always thought it would!

In other words
1  
longestLine = currentWidth;

is all you want to do on that last line.

Cas Smiley

Offline jessewclark

Senior Newbie




Heaven means muzak.


« Reply #2 - Posted 2004-01-18 18:29:54 »

Huh.  Okay, so, but let's just say we were talking about a Point2D and not a double.  In that case,

pointA = pointB

would make both pointA and pointB point to the same object, instead of copying pointB into a new object for pointA, right?
Games published by our own members! Check 'em out!
Try the Free Demo of Revenge of the Titans
Offline princec
« League of Dukes »

JGO Kernel


Medals: 196
Projects: 3


Eh? Who? What? ... Me?


« Reply #3 - Posted 2004-01-18 18:31:37 »

Yes.

Cas Smiley

Offline jessewclark

Senior Newbie




Heaven means muzak.


« Reply #4 - Posted 2004-01-18 18:32:00 »

Thanks!
Offline cfmdobbie

Senior Member




Who, me?


« Reply #5 - Posted 2004-01-18 22:40:38 »

And to finish that thought, that situation is why the Sun Gods gave us the Object.clone() method.  If you have a Point2D object and instead of assigning a second reference to it you want a reference to an identical but different object, call:

 Point2D pointB = (Point2D)pointA.clone();

Hellomynameis Charlie Dobbie.
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (126 views)
2013-05-17 21:29:12

alaslipknot (134 views)
2013-05-16 21:24:48

gouessej (164 views)
2013-05-16 00:53:38

gouessej (157 views)
2013-05-16 00:17:58

theagentd (169 views)
2013-05-15 15:01:13

theagentd (154 views)
2013-05-15 15:00:54

StreetDoggy (198 views)
2013-05-14 15:56:26

kutucuk (222 views)
2013-05-12 17:10:36

kutucuk (221 views)
2013-05-12 15:36:09

UnluckyDevil (225 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.108 seconds with 21 queries.