Click here to Skip to main content
15,898,036 members
Home / Discussions / Java
   

Java

 
Questionhow to read exact content of word in java Pin
priya218411-May-11 0:03
priya218411-May-11 0:03 
AnswerRe: how to read exact content of word in java Pin
Nagy Vilmos11-May-11 0:13
professionalNagy Vilmos11-May-11 0:13 
AnswerRe: how to read exact content of word in java Pin
JP_Rocks29-May-11 22:34
JP_Rocks29-May-11 22:34 
Questionhow to read exact content of word in java Pin
priya218411-May-11 0:02
priya218411-May-11 0:02 
AnswerRe: how to read exact content of word in java Pin
Nagy Vilmos11-May-11 0:17
professionalNagy Vilmos11-May-11 0:17 
QuestionCreating an object of a superclass Pin
kurt110-May-11 9:20
kurt110-May-11 9:20 
AnswerRe: Creating an object of a superclass [modified] Pin
Luc Pattyn10-May-11 12:43
sitebuilderLuc Pattyn10-May-11 12:43 
AnswerRe: Creating an object of a superclass Pin
Nagy Vilmos10-May-11 23:11
professionalNagy Vilmos10-May-11 23:11 
Further to Luc's excellent answer your classes are:
class Sprite {
   ...
}

class Monster
      extends Sprite {
   ...
}

class Player
      extends Monster {
   ...
}


You need to have an interface for InventoryItems that defines all the methods required and then impliement it in Player:

class Player
      extends Monster
      impliments InventoryInterface {
   ...
}



Panic, Chaos, Destruction.
My work here is done.


or "Drink. Get drunk. Fall over." - P O'H

OK, I will win to day or my name isn't Ethel Crudacre! - DD Ethel Crudacre

Have a bit more patience with newbies. Of course some of them act dumb -- they're often *students*, for heaven's sake. -- (Terry Pratchett, alt.fan.pratchett)

GeneralRe: Creating an object of a superclass Pin
Luc Pattyn11-May-11 0:54
sitebuilderLuc Pattyn11-May-11 0:54 
AnswerRe: Creating an object of a superclass Pin
jschell11-May-11 8:49
jschell11-May-11 8:49 
QuestionHow to get only modified files from vss using ant scripts [modified] Pin
Payam Rastogi9-May-11 19:27
Payam Rastogi9-May-11 19:27 
AnswerRe: How to get only modified files from vss using ant scripts Pin
Richard MacCutchan9-May-11 22:06
mveRichard MacCutchan9-May-11 22:06 
GeneralRe: How to get only modified files from vss using ant scripts Pin
David Skelly9-May-11 22:35
David Skelly9-May-11 22:35 
GeneralRe: How to get only modified files from vss using ant scripts Pin
Richard MacCutchan10-May-11 12:07
mveRichard MacCutchan10-May-11 12:07 
AnswerRe: How to get only modified files from vss using ant scripts Pin
TorstenH.10-May-11 4:10
TorstenH.10-May-11 4:10 
AnswerRe: How to get only modified files from vss using ant scripts Pin
jschell10-May-11 11:56
jschell10-May-11 11:56 
GeneralRe: How to get only modified files from vss using ant scripts Pin
David Skelly10-May-11 22:19
David Skelly10-May-11 22:19 
Questionrandom runtime crash Pin
kartikdasani9-May-11 3:12
kartikdasani9-May-11 3:12 
AnswerRe: random runtime crash Pin
Nagy Vilmos9-May-11 3:31
professionalNagy Vilmos9-May-11 3:31 
GeneralRe: random runtime crash Pin
jschell9-May-11 9:34
jschell9-May-11 9:34 
AnswerRe: random runtime crash Pin
jschell9-May-11 9:37
jschell9-May-11 9:37 
GeneralRe: random runtime crash Pin
TorstenH.10-May-11 4:14
TorstenH.10-May-11 4:14 
AnswerRe: random runtime crash Pin
David Skelly10-May-11 6:14
David Skelly10-May-11 6:14 
Question[Help]How to use throw and throws? Pin
tuanvu_n6-May-11 2:15
tuanvu_n6-May-11 2:15 
AnswerRe: [Help]How to use throw and throws? Pin
TorstenH.6-May-11 2:19
TorstenH.6-May-11 2:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.