Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
314 views

Simple hibernate query beeing very slow

I have the following hibernate query: Query query = session.createQuery("from MyHibernateClass"); List<MyHibernateClass> result = query.list();// executes in 7000ms When logging the sql being ...
4
votes
1answer
139 views

Why this instance creation of reqpro40.applicationclass fails?

I am trying to open a ReqPro project from c# class code. The steps followed are: Add reference to ReqPro.dll (the extensibility COM dll) Create a type of ReqPro40.Application and have an instance of ...
4
votes
3answers
348 views

Is it possible to bypass constructors when instantiating objects in Android

Do Android have any way to instantiate objects without calling any of its constructors? In Java, Sun have sun.reflect.ReflectionFactory.getReflectionFactory().newConstructorForSerialization(), in ...
1
vote
4answers
76 views

Is it possible to extend the functionality of an object or to Import methods into an object in PHP?

I am facing a serious design problem that is driving me crazy. I think it can only be solved with multiple inheritance or something. So here is what I want to do: Say I have a basic user class called ...
1
vote
3answers
71 views

What could possibly cause this error when declaring an object inside a class?

I'm battling with this assignment :) I've got two classes: Ocean and Grid. When I declare an object of the Grid inside the Ocean: unsigned int sharkCount; Grid grid; The compiler/complainer says: ...
1
vote
2answers
378 views

How do I create a development tool to create custom object instances for iphone os

I'm setting out to create an app where it will use 7-10 instances of a custom class, lets call them "books" each class will consist of a number of pages, a title, a int of how many pages a book ...
1
vote
1answer
82 views

Function to create objects?

Is there a function I can use to instantiate an object with arguments? #include <database.h> class database { function __construct($dbhost, $user, $pass, $etc) { /* etc */ } function ...
0
votes
5answers
51 views

Hide cached objects in jQuery

I'm not sure if "cached" is a correct term for this one. Maybe I should use "instantiated" instead. However, say I want to "cache" several objects, to save some resources: var $foo = $("#foo"), $bar ...
0
votes
3answers
307 views

Create object of parameter type

hey. Is it possible to have a method that allows the user to pass in a parameter of a certain type and have the method instantiate a new object of that type? I would like to do something like this: (I ...
0
votes
2answers
42 views

Instantiation of objects

If I use multiple instances of the same object in my code, do the instance methods for each separate object require memory, or do all of those objects share the same instance methods? It could have a ...
0
votes
1answer
615 views

Jython: Instantiating java class in script as Java object, not as Python object

I have a problem when using Jython, but I can't seem to find a solution in the documentation. Basically what I have is an object that has been instantiated in Java, and I want to instantiate another ...