Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
objects
- Page 1
Re: Objects
Programming
Software Development
14 Years Ago
by Momerath
… values Properties can refer to
objects
or values. Methods are not
objects
, but you can have
objects
that reference methods (events and delegates… statement is almost true :) There are other methods that create
objects
other than using new to instantiate them in the .NET…
Re: Objects as arguments
Programming
Software Development
16 Years Ago
by Ezzaral
"
Objects
are the same" is the entire purpose of the equals() method. [url]http://www.ibm.com/developerworks/java/library/j-jtp05273.html[/url]
Objects
Programming
Software Development
14 Years Ago
by james6754
… passed in to the constructor. I know I can create
objects
myself such as myob1,myob2,myob3 etc and store different… values in those
objects
. What I want to know is..can I make an… do this.. So therefore if I wanted to make new
objects
every time different values are passed in to the constructor…
Re: Objects
Programming
Software Development
14 Years Ago
by james6754
… heap. I am thinking that variables are
objects
, methods are variables, properties are
objects
etc...I think this is confusing me the… if the above are actually classed as
objects
or do you only class the
objects
as instances you create with the new…
Re: Objects
Programming
Software Development
14 Years Ago
by james6754
Hmmm, stumped! It seems like this is going against what I have learnt to now....you say multiple
objects
...do you mean one object would be the set of values in a list or database? If not can you advise anywhere I can read about multiple
objects
..? Thanks James
Re: Objects
Programming
Software Development
14 Years Ago
by Momerath
….Title, bookData); // Object 3[/code] We've create multiple book
objects
and stored them in the dictionary (this is what I… believe your instructor means about multiple
objects
). We can now iterate through all the books if we…
Re: Objects
Programming
Software Development
14 Years Ago
by james6754
Thanks! This is what I thought...you would just create one object..but my lecturer was saying that you create a whole number of
objects
, which I could not understand. But the reality is that you create one object and send values to that object, saving each different set of values as you go! Thanks, understand now!
Re: Objects
Programming
Software Development
14 Years Ago
by Momerath
… to store stuff in a database. As for the multiple
objects
, you'd create one object for each book. Maybe that…
Re: Objects
Programming
Software Development
14 Years Ago
by jay.gadhavi
… c# class, the object will be as below > Form
objects
> Local Variables > Parent Class , and parent class accessible…
objects
> Local, Global Declared ADO Controls, which will be used …
objects
Programming
Software Development
16 Years Ago
by QuantNeeds
…. But now I am struggling with another issue: getting my
objects
recognized. And also, must I always have an object? Because…
Objects
Programming
Software Development
14 Years Ago
by james6754
… something similar to this before. I understand how to use
objects
and what they do etc... What I am struggling to…
Re: Objects
Programming
Software Development
14 Years Ago
by kvprajapati
… storage in the heap. These areas of storage define "
Objects
". Read - [URL="http://www.petebecker.com/js/js199906…
Re: Objects
Programming
Software Development
14 Years Ago
by Momerath
… 'boxes' value types when it needs to treat them as
objects
.
Re: Objects
Programming
Software Development
14 Years Ago
by Momerath
No, int is a value type. [code]Form f = new MyForm();[/code] There is an object :) One way to tell if something is going to be an object is to ask yourself "Can it be set to null?" Value types can't be set to null (though there are nullable value types which are
objects
that act like value types).
Re: Objects
Programming
Software Development
14 Years Ago
by james6754
[QUOTE] Variables can be
objects
or values [/QUOTE] I am confused by what you say...so even though "f" is an object..it is still a variable?
Re: Objects
Programming
Software Development
14 Years Ago
by Momerath
Generally, as there are specific
objects
in the C# language than can't be set to …
Objects vs Types: Strings, char, int.
Programming
Software Development
14 Years Ago
by crapgarden
[COLOR="Red"]3.3 -
Objects
vs Types: Strings, char, int.[/COLOR] Strings used to be an array of char in C-style coding. Now they're
objects
in C++. Does this mean that int and char are not
objects
?
Re: Objects vs Types: Strings, char, int.
Programming
Software Development
14 Years Ago
by Ancient Dragon
… this mean that int and char are not
objects
? Yes -- they are not
objects
. They are data types. A string is not…++ class that is defined in <string> header file.
Objects
are an intstance of a data type or c++ class…
objects or classes?
Programming
Software Development
14 Years Ago
by liran ritkop
Hi I want to build some
objects
that have a little difference between them. But i wonder … it - 1. build a class with some variables and build
objects
out of him, or - 2.build class for each object… is the profit of make one class, and inherit many
objects
out of it, make it complicated to implement different functions…
Re: Objects as arguments
Programming
Software Development
16 Years Ago
by MrDiaz
… isn't related on syntax rather on how to use
objects
as 'data types" sorta to use them as arguments… is that I want to compare the properties of 2
objects
. Say
objects
are tables, I want to input 2 tables and… use the method I'm creating to determine if both
objects
are the same (have the same property values) I hope…
Re: Objects vs Types: Strings, char, int.
Programming
Software Development
14 Years Ago
by mrnutty
… array of char in C-style coding. Now they're
objects
in C++. Forget about what it used to be is…;>Does this mean that int and char are not
objects
? As pointed out, int and char are primitive data types…
Objects and logic gates
Programming
Software Development
16 Years Ago
by MrBones
… to do this would be to have an array of
objects
called gatesout[5], where the index order in which the… gates were placed. ie first
objects
= gatesout[0], etc. But this variable only has the standard…
Re: objects or classes?
Programming
Software Development
14 Years Ago
by mike_2000_17
…: basically, you can allow your class (page) to include polymorphic
objects
to customize it. This would be appropriate if the code…
Re: objects in C?
Programming
Software Development
14 Years Ago
by Narue
… be created in C just like c++.[/QUOTE]
Objects
are really just lumping data and functions that operate on … functions and attaching member functions to each object on initialization.
Objects
like this are easy. The complication is introduced when one…
Objects and arrays homework help
Programming
Software Development
13 Years Ago
by Crashley2010
… BinManager class will own and manage an array of InvBin
objects
. Once you have created thses two classes, wirte a menu… BinManager class only accepts information, keeps the array of InvBin
objects
up to date, and returns information to the client program…
Re: Objects as arguments
Programming
Software Development
16 Years Ago
by ~s.o.s~
… would be the correct terminology here. > that accepts two
objects
and compares properties between them. That largely depends on the… shallow comparison. If you are in need to comparing two
objects
of the same run-time type, consider overriding the [ICODE…
Re: Objects and Mouse Click help
Programming
Software Development
14 Years Ago
by Andy_Parr
…. New question... is it possible to compare the values of
objects
in arrays against each other. For example if I had…
objects
that looked like this: [CODE] store Asda = new store("…
Re: Objects and arrays homework help
Programming
Software Development
13 Years Ago
by triumphost
Why do you have classes inside main? and why is your bins initial size 30? I though your supposed to add elements to the array initialized with 9? Were you skipping school? if you need a dynamic array of
objects
and CANNOT use vectors then by all means look into linked lists else just use vectors.
Objects colliding
Programming
Software Development
17 Years Ago
by jgritty
…: So, basically, is there a way to make these separate
objects
, rather than pointing to the same one? If you need…
objects in heap why?
Programming
Software Development
16 Years Ago
by tamilramki
Hi Why the variables are stored in stack and
objects
are stored in heap... may i know the exact use of heap... thank u
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC