Re: Dynamic Properties in PHP 8.2 Programming Web Development by Dani … array. IMHO, there are two easy ways to create temporary objects: // Create a PHP object and set 2 properties $temp_obj = new… Re: How to show visa info based on country selection in a travel form? Programming Web Development by Biiim … one, I usually do this kind of thing with javascript objects/arrays (eg `settings['GB']['visa_req'] = false;settings['IN']['visa_req'] = true… Re: My php is showing wrong results of time difference Programming Web Development by Dani … HTTP form $start = $_POST['start']; $end = $_POST['end']; // Create DateTime objects in PHP for us to work with $start_object = date_create($start… Re: Optimizing working with big data Programming Software Development by ThinkWriteGrow … handle big data efficiently. Also, remember to clean up unused objects promptly to free up memory. These steps will keep your… Re: Objects Programming Software Development 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 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 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 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 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 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 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 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 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 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 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 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 by Momerath … 'boxes' value types when it needs to treat them as objects. Re: Objects Programming Software Development 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 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 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 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 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 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 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 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 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 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 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 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 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…