An object in this meaning is the same thing as an objective or task. It comes from old project terminology and refers to the act of actually performing something according to a plan, or rather "according to a project" (the word "project" used to mean "plan").
2006-10-01 06:30:52
·
answer #1
·
answered by Anonymous
·
0⤊
0⤋
An object can be any part of a computer application whether it be visual or non-visual. For example; the button you see on your web page now is an object. In object oriented programming an object can have several properties, events, and functions(a.k.a methods). Some properties might be; text-color, background-color, height, width, etc. Some events could be clicked, right-clicked, button-down, etc. Some functions or methods might be "clicked()" to simulate user clicking the button. Or maybe a SetText( string ) method to modify the text property of the object. In true object oriented programming languages you can inherit from obects, overload functions, make properties private so that they can only be changed via functions.
I've heard other programmers refer to objects as "black-boxes". I've also heard the television used as an analogy to understanding objects and encapsulation. One method of a tv is to change channel. Internally we don't care what needs to be done, the tuner might need to be changed, screen number displayed, ratings checked if child protected, etc. So the channel up button encapsulates all this stuff. The method is responsible for changing properties that are protected. You don't want people changing some properties directly for example setting the channel display to say 10 when it is really on channel 14. Protecting attributes/properties is one aspect commonly used in object oriented programming. I'm rambling now, this subject is quite detailed...
For more detailed reading about Objects and OOP (Object Oriented Programming) try this: http://java.sun.com/docs/books/tutorial/java/concepts/object.html
2006-10-01 06:58:59
·
answer #2
·
answered by RichieB 2
·
0⤊
0⤋
i recognize i have mastered the potential to stroll, communicate and skim. there is not any longer some thing a lot left to benefit in those fields, and that i will do all of it with complete ease. does no longer mean I not in any respect stub my toe, slur some words, or stumble on a sentence from time to time, yet i have reached a level the position it really is thoroughly causal. i'm no longer an olympic sprinter, or a public speaker, or a % reader -- those are all fullyyt separate skills -- yet what I discovered is a lot to get by life. I not in any respect ignore that the martial arts are called an artwork, no matter if it truly is an jap interpretation, yet contained in the West this does have a purpose. An artwork couldn't be some thing you acceptable. song, portray and sculpting all have close to infinite potential, yet ranges of progression that you'll could "carry close" to get better suited. A black belt, as we've defined earlier on right here, is about having a company understanding of the basics, or "All straightforward movements and techniques, will be utilized with prolonged stress and perfect application in straightforward mixture." the most words right here will be "all straightforward movements and techniques" and "prolonged stress and perfect application". i'd say there's a mastery of having discovered the criteria and recognize a thanks to placed them to apply, only no longer some thing further from the basics. i imagine human beings bypass a touch too far with the note, utilizing it always erroneously, in spite of the indisputable fact that the motive of conveniently and casually utilizing what you've discovered is what they are all implying. As for the martial arts as an complete, that i have self belief isn't conceivable, highly as an artwork.
2016-11-25 20:40:20
·
answer #3
·
answered by llorens 4
·
0⤊
0⤋
An object represents a "thing's" state and behavior. For example, a dog object would have the following states and behaviors:
States -
sitting or standing
tongue in or out
height
weight
Behaviors -
bark
walk
run
play
2006-10-01 09:40:27
·
answer #4
·
answered by Anonymous
·
0⤊
0⤋
You're referring to OOP (Object Oriented Programming) I'm assuming.
An object is an element you can modify and act on in the code.
For example, a textbox on a webpage would be an object as far as JavaScript is concerned.
2006-10-01 06:47:05
·
answer #5
·
answered by Jin Tao 3
·
0⤊
0⤋
an object is a class that has methods in it to perform certain actions on that object. some methods are only internal to that object aka private methods, and others are public. public methods allow other objects (classes) to manipulate that object.
2006-10-01 19:36:00
·
answer #6
·
answered by mister r 1
·
0⤊
0⤋
In terms java "Object is a Software bundle of related state and behaviour ".
http://java.sun.com/docs/books/tutorial/java/concepts/object.html
2006-10-01 08:00:42
·
answer #7
·
answered by venkataramana r 1
·
0⤊
0⤋