0
votes
2answers
70 views

Really confused between object and reference type

I read two programs, both passing a polymorphic object reference to a method. I'm confused whether the method at runtime depends on the reference type or the actual object. Program 1: class A { ...
6
votes
2answers
129 views

Why does java have Type when it already has Object?

I was hoping that someone could tell me why java has java.lang.reflect.Type, when everything already inherits from Object? Could someone please give an example of a case where I would need to use a ...
-3
votes
2answers
67 views

Can I modify the type of an object in python

specifically I want to change a StringType to a NoneType. I know how to use int() and str() to convert between IntType and StringType, but I can't find a similar solution for NoneType. Is there a ...
0
votes
5answers
58 views

Accept different types in python function?

I have a Python function that does a lot of major work on an XML file. When using this function, I want two options: either pass it the name of an XML file, or pass it a pre-parsed ElementTree ...
0
votes
3answers
53 views

Python: How can I check if an attribute of an object is a method or not?

I want to define a class with it's __repr__ method defined in such a way that it will write out only the names and values of all attributes that are not methods. How can I do this? I have managed to ...
0
votes
3answers
36 views

Python: checking to see if a value is a certain object

I know if the isinstance() method, which can be used to check if a value is a certain type. For instance, num = 3 print isinstance(num, int) Gives us True. I have a custom made object now, called ...
1
vote
4answers
60 views

Working with Types in Perl

i worked with Fortran since years and with Types within Fortran of course. Now, since i am employed at a new company, I have to work with Perl. Since my main work is to operate with data within a ...
4
votes
4answers
117 views

What is the difference between a 'Type' an an 'Object' in Python

I came upon this reading the python documentation on the super keyword: If the second argument is omitted, the super object returned is unbound. If the second argument is an object, isinstance(obj, ...
1
vote
2answers
96 views

php - Using type hinting and dependency injection

I'm using Type Hinting on a class that gets passed an object into its constructor. The passed object (Bar) exists in its own namespace. This is all fine until I swap out the passed object with a fake ...
0
votes
4answers
140 views

object has keys but evaluates to null

the problem is, there is no "standard function" you can write to detect if some thing "is set". for example, if it truly is a null object, then, you don't want to work with it; but, if it has keys, ...
0
votes
0answers
33 views

Creating an object of a class and using it as a type

Recently I have made a bulk report generator using SSRS and HTTPWebRequests and HTTPWebResponses to get the report, which all worked until the client asked for the server to run on SSL. I had to then ...
0
votes
3answers
76 views

How to retrieve a specific object from an array of objects in java

I have an very large array of objects where objects are constantly added and every object is dynamic and contains different parameters that define it (getParam1() etc..). I need a data type that ...
0
votes
2answers
65 views

How can i create list of datatype of an existing object in java

Well the question says it all. Heres an Example of what i want String s = new String(); List<s.type> ls = new ArrayList<s.type>(); Something like that, or any elegant way to achieve ...
1
vote
2answers
39 views

Defining types on object creation like HashMap<type here>

Very simple question, Im implementing a array enumeration class but cannot remember how to get the correct type back on the nextElement() method. The code is as follows... public class ...
0
votes
2answers
75 views

Storing various types in a vector

I'm trying to store various different types of data in an array or vector. So far I'm doing this by using a base class that will be stored in the vector as pointers to each object and then type ...
1
vote
2answers
117 views

Generics and objects conversion in C#

I have a class which is handling objects same way. It's like: class Handler<T>{ private T _obj; public T obj{ get{ ...//do sth return _obj; } ...
1
vote
1answer
90 views

Python: Using strings as an object argument?

Essentially my problem is as follows... In Python, I have a function that will return an output string in the following form: 'union(symbol(a), symbol(b))' The function forms found within this ...
0
votes
1answer
70 views

FB.api() object type as a variable

I have written the code below: function processLWO(lwo,type) { FB.api('me/'+lwo, 'post', {shoe :'<%=sItemURL%>',object :'<%=sItemURL%>'}, function ...
0
votes
1answer
49 views

Calling Object Methods in Code

I'm a bit new to PHP, and I'm more experienced with strongly-typed languages such as JAVA, C# or C++.I'm currently writing a web tool in PHP, and I am having an issue trying to do what I want. The ...
2
votes
3answers
204 views

How to passing object as parameter in C++?

If we have the following simple code in C#: class Program { static void Main(string[] args) { string x = "Hello World"; test(x); int y = 101; ...
0
votes
0answers
110 views

The type 'object' must be a non-nullable value type in order to use

There is a problem on map.Property(t => t.GetType().GetProperties().GetValue(number));. The type 'object' must be a non-nullable value type in order to use. How to solve it? public static class ...
9
votes
1answer
196 views

Python objects from existing objects using __new__

In learning about Python's data model, I am playing with creating objects from existing objects using the __new__ method. Here are some examples which create new objects of various types: x = 2; ...
3
votes
3answers
44 views

checking the instances If they are constructed from same Constructor in javascript [duplicate]

Possible Duplicate: Javascript type of custom object I have a question regarding JavaScript instances. Let us consider the following code: function Box(col) { var color = col; ...
1
vote
1answer
141 views

VB.net VS2010: Dynamic object type that changes to match class name

I tried to search a bit before asking but I really had no idea what to search for on this one so here's what I'm looking for: I need a way to declare an object in VB.net so that I can set it to the ...
2
votes
1answer
98 views

.net deserialize xml to one of multiple known objects

Having tried searching with various combinations of ".net deserialize xml one many known object type"... and not finding anything that makes sense, I'm here now. I get 1 of 5 unrelated objects ...
3
votes
6answers
438 views

How to cast Object to its actual type?

If I have: void MyMethod(Object obj) { ... } How can I cast obj to what its actual type is?
-1
votes
1answer
262 views

Cannot fetch large type picture for multiple Facebook object ids Graph API

I just can't figure it out, i am using Facebook graph API to fetch data, lets say i have a multiple Facebook objects and i want their picture in type=large... I saw some posts like this one How do I ...
0
votes
2answers
66 views

Find custom type in Object

I have a Upload class with different properties and I like to find each UploadObject property in this class or inside of other propertys. How can i find all UploadObjects in my Upload class? class ...
3
votes
3answers
84 views

Replace Pythons builtin type with custom one

Is it possible to replace some built-in python types with custom ones? I want to create something like: class MyInt(object): ... __builtin__.int = MyInt x = 5
1
vote
3answers
82 views

How to pass type of object to class?

I am currently making a game in java using slick2D. The game is tile based and I am trying to make the random map generation. I am generating a room and the a hallway attached to that room and keep ...
0
votes
1answer
221 views

How to get the objects from an oracle table of row objects

When dealing with an oracle table containing row objects I would expect that each row is an object and I can invoke functions on it or pass it to functions in any context. As an example if I declare ...
1
vote
1answer
45 views

Failure to recognize passed type

I am given the error "The type or namespace name 'passedType' could not be found (are you missing a using directive or an assembly reference?)" on the two references to passedType inside ...
2
votes
2answers
353 views

How to cast an object to type passed to a function?

This doesn't compile, but what I'm trying to do is simply casting object to 't' which is passed to the function? public void My_Func(Object input, Type t) { (t)object ab = ...
0
votes
5answers
540 views

How to judge a javascript variable's datatype is Array?

I have try three way in the bellow, the result is comment on the right,the diffcult is I can't different it from Object datatype.How can I get it datatype like Array or String but not Object? var ...
2
votes
3answers
69 views

c# casting an object in a list of objects to a type returns a left hand signed must be a variable error

Wasn't sure how to go about with the title, but when I try to cast an object in a list, I get that error. this is what I try: (type)objectList[i] = typeValue; I would expect this to work but it ...
0
votes
1answer
89 views

Casting object array with unknown value types to a double

I am writing a quartile function and I am stuck with this problem. I am pulling a array with unknown types and length, but i need to cast it to a double. This is my current code which compiles but ...
2
votes
3answers
268 views

Python's new-style classes' base - `object` and `type`

According to the doc, object is all new-style classes' base class. And AFAIK, the so-called new-style classes are just ones which can acquire some new fetures by inheriting object, right? I thought ...
0
votes
0answers
168 views

How to determine the original type of object variable

I am using an ArrayList Of Object which contains Data . I am using the following code if(SQL2000NumericDataTypes.contains(colDataType.toLowerCase())) { if ...
1
vote
1answer
73 views

How can you trace what a user read on your blog through the Facebook API?

I have a blog. I like people to login to my website and mark which articles they have read, completely through the Facebook API. Similar in the way how you can currently like (and unlike) a post on ...
1
vote
2answers
908 views

retrieve a List of objects from a web service c#

I would like to retrieve a list of objects from my web service ,but I am struggling with Object Types. I have this code : [WebMethod] public Car[] GetAllCars() { List<Car> ...
2
votes
1answer
179 views

C++ dynamic_cast vs storing object type in a static enum?

I am developing a big hierarchy of classes for a framework that will require quite a lot of type casting when it gets done. My question is, how stupid of an idea is to put in a static member that ...
0
votes
1answer
21 views

Accessing variables (of some class) inside a PHP class

I implemented a class like this: class ClassRoom { public $desired_connection; // variable of type DesiredConnection //Constructor public function __contruct() { ...
0
votes
2answers
72 views

Theoretical difference between classes and types

This question has been asked on here a few times, but none of the replies really answered it in the more abstract, theoretical sense that I am looking for. Most answers are something along the lines ...
2
votes
4answers
156 views

Java - Pattern to recognize value type

I'm making a new script generator for external program in Java. This language supports variables, but it is an untyped language. This is an example of the code i have written initially: public class ...
0
votes
1answer
155 views

C++ None of my files have a type

So I split my files into a few pieces and now i'm getting a bunch of type errors. Such as: phoneNUmber.h 'istream does not name a type' What's this mean exactly? Here's my files they're pretty ...
5
votes
2answers
321 views

What is the type of a nested object in scala

I am trying to figure out how to create a method that takes a nested object as an argument. For a nested class I can do the following: scala> class Outer { | class Inner | def ...
5
votes
2answers
1k views

Get companion object of class by given generic type Scala

What I am trying to do is to make a function that would take a generic class and use a static method in it (sorry for Java language, I mean method of its companion object). trait Worker {def doSth: ...
2
votes
1answer
130 views

If pointers in C# do not inherit from object, are there still only objects?

I have read few discussions, saying that because everything in .NET inherits from the object class, everything (including primitive types) is an object. But as far as I know pointers do not inherit ...
1
vote
1answer
133 views

Javascript: Type of properties/objects

I have an object which has numerous properties in it. Now I want to access certain properties. For example, object is Car. Car has further properties which are actually objects, for example doors, ...
1
vote
1answer
506 views

new object inline instantiation

NEWBIE, Newbie, newbie question, sorry. I've just started programming in C# (coming long ago from the strongly typed world of c++). Its fun to be back programming but I see in the global.asax file ...

1 2 3