-1
votes
2answers
27 views
how do we compare 2 class names of an object
Is there a way to get compare class name betweeen 2 objects?
Like:
NSString *bla = [[NSString alloc] init];
if([bla class] isEqual: NSString])
NSLog(@"success");
unsure if my syntax is correct.
0
votes
1answer
77 views
In Drools Rules, how to use two different ArrayList objects,obj1 is used in rule 1 and obj2 used in rule2?
I am doing ksession.insert(list) and after that I have to fire rule 1 in the drl file, then ksession.insert(list) and fire rule 2 in the drl.
Could someone tell me how to achieve this. I read about …
2
votes
3answers
55 views
What’s wrong with adding properties to DOM Element objects?
I've been looking for a straight answer for this (I can think of lots of possiblities, but I'd like to know the true reason):
jQuery provides a .data() method for associating data with DOM Element …
4
votes
6answers
3k views
How much memory does a C#/.NET object use?
I'm developing an application which currently have hundreds of objects created.
Is it possible to determine (or approximate) the memory allocated by an object (class instance)?
1
vote
5answers
184 views
+100
Form to object and loop through objects in c#?
I have a main form (frmMain), with some buttons (button1, button2...).
then I do this:
object objectsContainer = frmMain; // <--now the object contains form base, button1, button2...
how could …
0
votes
2answers
44 views
Sorting arrays within objects and using user input to select objects
E2A
The Code will probably claify things:
http://pastebin.com/d43446384 - Team class
http://pastebin.com/d63ae5281 - League Class
http://pastebin.com/d4dd519d9 - Driver (Contains main method)
I …
0
votes
3answers
62 views
jQuery - $.each loop through variable object
I'm working with a JSON dataset that has multiple high level objects. If I literally declare the object name, I can loop through the JSON with no trouble, but when I use a variable in its place, I get …
0
votes
2answers
21 views
Retreiving names of high level JSON arrays with jQuery/JS
I am working with JSON data with multiple sets of key value pairs - each set constitutes a list. In the simplified example below, The list name is not known beforehand - actually I'll need to …
2
votes
1answer
21 views
Can Objects in Objects be persistent? (vb .net)
Hi*,
Dim BigCollection As New Collection
Dim SmallCollection As New Collection
SmallCollection.Add("Hello World")
BigCollection.Add(SmallCollection)
MsgBox(BigCollection(1)(1)) 'shows "Hello World
…
0
votes
1answer
63 views
jQuery iterate over object with $.each
I have an object options: options = {title : 'title1', name : 'name1', url : 'url1', etc.}
which is passed in as a parameter to a function. I'm trying to iterate over that object, pass it through …
4
votes
3answers
90 views
Determining if a javascript object has a given property
If I want to test of object x has a defined property y regardless of x.y's value, is there a better way that the rather clunky:
if ( typeof(x.y) != 'undefined' ) ...
?
0
votes
3answers
63 views
Dynamically converting java object of Object class to a given class when class name is known
Yeah, I know. Long title of question... So I have class name in string. I'm dynamically creating object of that class in this way:
String className = "com.package.MyClass";
Class c = …
36
votes
9answers
11k views
What is the most efficent way to clone a JavaScript object?
What is the most efficient way to clone a JavaScript object? I've seen:
obj = eval(uneval(o));
But that's not cross platform (FF only). I've done (in Mootools 1.2) things like this:
obj = …
0
votes
4answers
102 views
C# getting unique hash from all objects
Hi
I want to be able to get a uniqe hash from all objects. What more,
in case of
Dictionary<string, MyObject> foo
I want the unique keys for:
string
MyObject
Properties in MyObject
…
0
votes
1answer
29 views
Javascript extend objects in variable
I have a function that contains messages for form field validation. However I would like to have default messages but also have the possibility to add custom messages later on from a different …
