Click here to Skip to main content
15,881,791 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralRe: What is an Object Pin
michaelbarb16-Nov-13 14:25
michaelbarb16-Nov-13 14:25 
GeneralRe: What is an Object Pin
Member 1008817116-Nov-13 14:38
Member 1008817116-Nov-13 14:38 
GeneralRe: What is an Object Pin
michaelbarb16-Nov-13 15:32
michaelbarb16-Nov-13 15:32 
GeneralRe: What is an Object Pin
0bx17-Nov-13 2:46
0bx17-Nov-13 2:46 
GeneralRe: What is an Object Pin
irneb5-Mar-14 23:36
irneb5-Mar-14 23:36 
GeneralRe: What is an Object Pin
Marc Clifton17-Nov-13 4:51
mvaMarc Clifton17-Nov-13 4:51 
GeneralRe: What is an Object Pin
Member 1008817117-Nov-13 18:31
Member 1008817117-Nov-13 18:31 
GeneralRe: What is an Object Pin
Marc Clifton18-Nov-13 2:49
mvaMarc Clifton18-Nov-13 2:49 
Member 10088171 wrote:
Object is unit of storage in memory that has type, size and address so it can be referred to, copied, deleted, moved or act upon; it can send/receive messages (using functions).


I disagree. Mr. Eckel is confusing an instantiation with its behavior. An object cannot inherently send/receive messages unless the class defines that behavior. Furthermore, some objects cannot be copied, deleted, moved, etc. A class doesn't need to provide any behavior at all - it can simply be a container for public fields! And lastly, and object does not have a type. If you look at memory in C++, can you distinguish between an integer and a double? No. In languages that support reflection, yes, one can determine the type of an object because somewhere there is a "database" of what object in memory is associated with what definition (the class, aka the type.)

So, with all respect, Mr. Eckel doesn't know what he's talking about.

The rest of your quote (I assume it's a quote) is also flawed.

Member 10088171 wrote:
Once class is instantiated in the memory it becomes object


What about classes with static methods? These don't require instantiation. Are they objects or classes?

Marc

GeneralRe: What is an Object Pin
Member 1008817118-Nov-13 6:26
Member 1008817118-Nov-13 6:26 
GeneralRe: What is an Object Pin
robocodeboy18-Nov-13 23:36
robocodeboy18-Nov-13 23:36 
GeneralRe: What is an Object Pin
Rob Grainger28-Nov-13 22:39
Rob Grainger28-Nov-13 22:39 
GeneralRe: What is an Object Pin
robocodeboy2-Dec-13 0:53
robocodeboy2-Dec-13 0:53 
GeneralRe: What is an Object Pin
Rob Grainger2-Dec-13 2:23
Rob Grainger2-Dec-13 2:23 
GeneralRe: What is an Object Pin
robocodeboy2-Dec-13 2:38
robocodeboy2-Dec-13 2:38 
GeneralRe: What is an Object Pin
Rob Grainger2-Dec-13 4:14
Rob Grainger2-Dec-13 4:14 
GeneralRe: What is an Object Pin
robocodeboy2-Dec-13 4:30
robocodeboy2-Dec-13 4:30 
GeneralRe: What is an Object Pin
michaelbarb2-Dec-13 8:11
michaelbarb2-Dec-13 8:11 
GeneralRe: What is an Object Pin
Rob Grainger28-Nov-13 4:35
Rob Grainger28-Nov-13 4:35 
GeneralRe: What is an Object Pin
michaelbarb28-Nov-13 12:55
michaelbarb28-Nov-13 12:55 
GeneralRe: What is an Object Pin
Rob Grainger28-Nov-13 22:35
Rob Grainger28-Nov-13 22:35 
GeneralRe: What is an Object Pin
michaelbarb29-Nov-13 2:40
michaelbarb29-Nov-13 2:40 
GeneralRe: What is an Object Pin
Rob Grainger2-Dec-13 2:35
Rob Grainger2-Dec-13 2:35 
GeneralRe: What is an Object Pin
michaelbarb2-Dec-13 8:00
michaelbarb2-Dec-13 8:00 
GeneralRe: What is an Object Pin
Rob Grainger2-Dec-13 8:36
Rob Grainger2-Dec-13 8:36 
GeneralRe: What is an Object Pin
michaelbarb2-Dec-13 9:26
michaelbarb2-Dec-13 9:26 

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.