Click here to Skip to main content
16,019,983 members
Home / Discussions / Java
   

Java

 
GeneralRe: [ASK] about create file in directori Pin
TorstenH.9-Mar-11 4:31
TorstenH.9-Mar-11 4:31 
QuestionTCP Socket Chat-Receive msg on JTextArea Pin
Ireland.ir6-Mar-11 6:38
Ireland.ir6-Mar-11 6:38 
AnswerRe: TCP Socket Chat-Receive msg on JTextArea Pin
Richard MacCutchan6-Mar-11 22:39
mveRichard MacCutchan6-Mar-11 22:39 
GeneralRe: TCP Socket Chat-Receive msg on JTextArea Pin
Ireland.ir7-Mar-11 1:47
Ireland.ir7-Mar-11 1:47 
QuestionHow to get sound from other apps? [modified] Pin
mk_45-Mar-11 13:13
mk_45-Mar-11 13:13 
Questionnoob question on new Pin
Budlee4-Mar-11 7:56
Budlee4-Mar-11 7:56 
AnswerRe: noob question on new Pin
exiles.prx_ac4-Mar-11 15:49
exiles.prx_ac4-Mar-11 15:49 
GeneralRe: noob question on new Pin
Albert Holguin5-Mar-11 18:39
professionalAlbert Holguin5-Mar-11 18:39 
To expand on this example and tie in the idea of an "instance" of an object:
C++
CCarClass *myCar = new CCarClass();
CCarClass *sisterCar = new CCarClass();


This would create two specific and individual instances of the class, each its own object, on the heap (as opposed to the stack). They will persist until you delete them (which in C++ you must do yourself to clean up resources).
C++
delete myCar;
delete sisterCar;

GeneralRe: noob question on new Pin
jschell7-Mar-11 8:54
jschell7-Mar-11 8:54 
GeneralRe: noob question on new Pin
Albert Holguin7-Mar-11 10:08
professionalAlbert Holguin7-Mar-11 10:08 
GeneralRe: noob question on new Pin
Yadav Akash21-Mar-11 2:31
Yadav Akash21-Mar-11 2:31 
AnswerRe: noob question on new Pin
jschell5-Mar-11 8:25
jschell5-Mar-11 8:25 
QuestionList Interfaces Name Of Cisco Router With SNMP [modified] Pin
navidnmc2-Mar-11 20:49
navidnmc2-Mar-11 20:49 
AnswerRe: List Interfaces Name Of Cisco Router With SNMP Pin
Richard MacCutchan2-Mar-11 23:21
mveRichard MacCutchan2-Mar-11 23:21 
QuestionSun certified java Pin
shamarh1-Mar-11 18:50
shamarh1-Mar-11 18:50 
AnswerRe: Sun certified java Pin
Richard MacCutchan1-Mar-11 21:54
mveRichard MacCutchan1-Mar-11 21:54 
AnswerRe: Sun certified java Pin
David Skelly1-Mar-11 22:20
David Skelly1-Mar-11 22:20 
AnswerRe: Sun certified java Pin
RaviRanjanKr10-Mar-11 16:47
professionalRaviRanjanKr10-Mar-11 16:47 
Questionproblems setting jquery dialog left and top position Pin
CrafterIt1-Mar-11 1:11
CrafterIt1-Mar-11 1:11 
AnswerRe: problems setting jquery dialog left and top position [modified] Pin
CrafterIt1-Mar-11 2:15
CrafterIt1-Mar-11 2:15 
QuestionJava + MS SQL Server Pin
777goga77727-Feb-11 1:16
777goga77727-Feb-11 1:16 
AnswerRe: Java + MS SQL Sever Pin
Richard MacCutchan27-Feb-11 1:48
mveRichard MacCutchan27-Feb-11 1:48 
AnswerRe: Java + MS SQL Sever Pin
RaviRanjanKr27-Feb-11 5:20
professionalRaviRanjanKr27-Feb-11 5:20 
GeneralRe: Java + MS SQL Sever Pin
777goga7776-Mar-11 6:16
777goga7776-Mar-11 6:16 
AnswerRe: Java + MS SQL Sever Pin
kellyyy6-Mar-11 4:53
kellyyy6-Mar-11 4:53 

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.