| Author |
casting String into double
|
umut uzumcu
Ranch Hand
Joined: Jan 10, 2007
Posts: 43
|
|
Hi, Can anybody help me to sort this out please. class.. { Object p=pList.getCap(); //either this String s=pList.getCap(); //or this //here I need to cast the Object or String (any will do) into double //to send it as an argument to coldDrinks(int, double) method sDB.coldDrinks(++coldDrinkNo,softDrinkPrice); } other class { Object/String getCap() { } } other class { coldDrinks(int, double) {..} } Thanks in advance.
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24057
|
|
|
Well, the question is, what does getCap() actually return? Is it a String? If so, look at the static parseDouble() method in the java.lang.Double class.
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: casting String into double
|
|
|