Click here to Skip to main content
15,887,966 members
Home / Discussions / Java
   

Java

 
AnswerRe: Creating a class that extends more than one class. Pin
Peter_in_27804-Oct-12 3:03
professionalPeter_in_27804-Oct-12 3:03 
GeneralRe: Creating a class that extends more than one class. Pin
Bill.Moo4-Oct-12 3:59
Bill.Moo4-Oct-12 3:59 
GeneralRe: Creating a class that extends more than one class. Pin
Peter_in_27804-Oct-12 11:36
professionalPeter_in_27804-Oct-12 11:36 
AnswerRe: Creating a class that extends more than one class. Pin
pasztorpisti4-Oct-12 12:14
pasztorpisti4-Oct-12 12:14 
QuestionRe: Creating a class that extends more than one class. Pin
Monster Maker21-Oct-12 21:08
Monster Maker21-Oct-12 21:08 
AnswerRe: Creating a class that extends more than one class. Pin
Gowtham Gutha15-Nov-12 6:59
Gowtham Gutha15-Nov-12 6:59 
QuestionThread names Pin
Neo101014-Oct-12 1:19
Neo101014-Oct-12 1:19 
AnswerRe: Thread names Pin
Nagy Vilmos4-Oct-12 2:54
professionalNagy Vilmos4-Oct-12 2:54 
Simply put you are addressing the Thread method not the MyThreadRunnable method. You could change your code thus and it would work as expected:

Java
MyThreadRunnable runnable = new MyThreadRunnable();
Thread thread = new Thread(runnable, "runnable1");
runnable.setName(thread.getName());
thread.start();



Panic, Chaos, Destruction. My work here is done.
Drink. Get drunk. Fall over - P O'H
OK, I will win to day or my name isn't Ethel Crudacre! - DD Ethel Crudacre
I cannot live by bread alone. Bacon and ketchup are needed as well. - Trollslayer
Have a bit more patience with newbies. Of course some of them act dumb - they're often *students*, for heaven's sake - Terry Pratchett

AnswerRe: Thread names Pin
Gowtham Gutha15-Nov-12 7:11
Gowtham Gutha15-Nov-12 7:11 
Questionget ethernet IP address Pin
hari3013-Oct-12 19:30
hari3013-Oct-12 19:30 
AnswerRe: get ethernet IP address Pin
TorstenH.3-Oct-12 19:58
TorstenH.3-Oct-12 19:58 
AnswerRe: get ethernet IP address Pin
jschell4-Oct-12 11:44
jschell4-Oct-12 11:44 
QuestionJava Based Websevice Pin
ashish121693-Oct-12 1:55
ashish121693-Oct-12 1:55 
AnswerRe: Java Based Websevice Pin
Richard MacCutchan3-Oct-12 2:34
mveRichard MacCutchan3-Oct-12 2:34 
AnswerRe: Java Based Websevice Pin
TorstenH.3-Oct-12 2:36
TorstenH.3-Oct-12 2:36 
QuestionHow can I change a 8-bit bitmap into a 4-bit/1-bit bitmap? Pin
Kangvampire2-Oct-12 22:11
Kangvampire2-Oct-12 22:11 
QuestionCreating a Thread Pin
Neo101012-Oct-12 8:17
Neo101012-Oct-12 8:17 
AnswerRe: Creating a Thread Pin
jschell2-Oct-12 8:46
jschell2-Oct-12 8:46 
AnswerRe: Creating a Thread Pin
Richard MacCutchan2-Oct-12 9:32
mveRichard MacCutchan2-Oct-12 9:32 
GeneralRe: Creating a Thread Pin
Neo101012-Oct-12 20:53
Neo101012-Oct-12 20:53 
GeneralRe: Creating a Thread Pin
TorstenH.2-Oct-12 23:31
TorstenH.2-Oct-12 23:31 
AnswerRe: Creating a Thread Pin
Peter_in_27802-Oct-12 22:05
professionalPeter_in_27802-Oct-12 22:05 
AnswerRe: Creating a Thread Pin
Gowtham Gutha15-Nov-12 7:15
Gowtham Gutha15-Nov-12 7:15 
Questionpure java based code needed to read shedule and send an sms Pin
ask.sagaram2-Oct-12 7:08
ask.sagaram2-Oct-12 7:08 
AnswerRe: pure java based code needed to read shedule and send an sms Pin
jschell2-Oct-12 8:50
jschell2-Oct-12 8:50 

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.