A special type of subroutine called at the creation of an object.
2
votes
0answers
168 views
Asmx WebService static constructor getting called more then once
Static constructor should be called once when the first method is called.
My constructor called every time method is called.
any idea Why is this happening?
using System;
using ...
2
votes
0answers
80 views
About dlclose with a bundle on iOS
This is about Jailbreak development. I'm not building for the App Store as this obviously wouldn't be accepted.
On iOS, i understand that once loaded, a dynamic library (.dylib) cannot be unloaded, ...
2
votes
0answers
49 views
object scope in containers
I am trying to put a vector of objects in a class and running into problems with scope. I need to construct each with different parameters. I am trying to avoid empty constructors and an ...
2
votes
0answers
292 views
Generating a constructor that takes an argument and just calls base(argument) using TypeBuilder
I am trying to dynamically create an empty constructor that takes an argument and simply calls base(argument) using TypeBuilder.
My code is something like:
(...)
// Create a class derived from ...
2
votes
0answers
489 views
Javascript: Allowing “virtual” function in base class to create instance of subclass
I have the following object model I want to get working - have been banging my head against the clone bit! Is this possible? I can't seem to get access to the SubClass constructor from within the ...
2
votes
0answers
400 views
Spring.NET & Constructor Interceptors
I'm trying to do some AOP over objects at construction time, and found IConstructorInterceptor, which would be perfect for what I want but it doesn't appear to work (in version 1.2 at least).
I've ...
2
votes
0answers
835 views
How to configure constructor arguments when defining a StructureMap Profile
When defining bindings for types that requires ctor arguments for the default instance it's pretty clear how to do it. However, when I want to create alternative profiles it gets a bit more difficult.
...
1
vote
0answers
66 views
Is it inheritance?Could some body explain?
I have two objects
function Obj1(name){
this.prototype={};
this.prototype.Name=name;
this.prototype.getName=function(){
alert(this.Name);
};
}
function Obj2(name){
var x=new ...
1
vote
0answers
37 views
PHP: Calling a 'setup' abstract method from an abstract class constructor; good or bad design?
I'm trying to decide the design pattern for a class structure I'm working with and I'm torn on the best way to implement the setup of the classes.
One approach calls an abstract setup function in the ...
1
vote
0answers
40 views
Why when I use tag f:event Constructor of ManagedBean has multiple calls?
I'm writing the project with ManagedBeans and I have the problem - multiple calls of constructor and multiple instances of beans. Source of test bean:
@Named(value = "newJSFManagedBean1")
...
1
vote
0answers
47 views
JPQL/Hibernate limitation using constructor expression in SELECT
From my reading of the JPA 2.0 spec, the following should be valid:
select e.employeeId, new com.foo.Custom(e.employeeName, e.employeeCity) from Employee e
However, Hibernate complains about this ...
1
vote
0answers
69 views
PHP send optional paremeters
and sorry about what i believe is a fairly basic question. I am wanting to send an image optional parameter in the below code, to a hosted image for our checkout. Unfortunately the providers and ...
1
vote
0answers
46 views
Ninject.Extensions.Interception intercept paramter constructor
Bindings:
IKernel kernel = new StandardKernel();
kernel.Bind<ILog>().ToMethod(context => LogManager.GetLogger(context.Request.Target.Type));
...
1
vote
0answers
90 views
Integration clojurescript into a javascript framework
I would like to use Clojurescript to write a component within a Javascript framework but I can't work out how to create the constructor and call global variables within the object.
The framework ...
1
vote
0answers
84 views
PHP SoapClient::__construct uncustomized request
I use PHP SoapClient to work with my JAVA application.
Here's a pseudo-code of my extended SoapClient class:
class MyClient extends SoapClient {
public function __construct($url) {
$params = ...
1
vote
0answers
325 views
Corrupted double-linked list error
I am working on a Qt/OpenGL gui that makes physics animation. I try to do rotation with mousePressEvent and mouseMoveEvent functions.
For this, I try to add QPoint lasPos data member for mouse ...
1
vote
0answers
234 views
javascript: constructor function vs revealing module pattern for single use
I have come to understand that constructor functions can be instantiated to create new objects in javascript which has its own _proto_ property and also giving the property 'prototype' to the ...
1
vote
0answers
69 views
Is the Silverlight Application class constructor called on the UI thread?
In Silverlight for WP7, all UI elements are constructed on the UI Thread, and I've noticed that the Application class constructor also runs on the same thread. And the first UI element to be ...
1
vote
0answers
112 views
Specifying properties on unity injected objects
I'm having an interesting problem with Unity, and any help is appreciated.
I want to inject an array of objects in a constructor, and I want to associate each object with a code during that ...
1
vote
0answers
235 views
Constructor not visible error when importing custom class into Android project
I wrote a FileIndexer class in Java, and am attempting to import it into my Android app. However, I get the following error...
The constructor FileIndexer(File) is not visible
Here is where I ...
1
vote
0answers
259 views
Why can't boost::bind deduce the return type when binding the constructor<> functor?
... in spite of the fact that the library-supplied constructor<> functor adapter defines the sig<> template?
struct Porc
{
Porc(int x) {}
};
boost::bind
(
...
1
vote
0answers
142 views
Private Constructor Implementation
As I was reading the C++ Primer 4th edition, I was confused by a particular code snippet. There was a class definition that is as follows:
// handle class to manage the Query_base inheritance ...
1
vote
0answers
281 views
Enforcement of attribute order in JAXB value constructor
I'm using the Maven jaxb2 plugin to generate a default value constructor for my generated JAXB classes. The problem that I'm having is that the ordering of the attributes/fields changes on different ...
1
vote
0answers
115 views
Why might my execution path not enter my constructor
My program is short and simple, designed to test my PCA regression class.
#include <iostream>
#include <vector>
#include "data.generator.h"
#include "reg.class.h"
int main(int argc, ...
1
vote
0answers
128 views
Extend Entity Framework Generate Class with another default constructor
I have a class that was generated by entity framework
it has an empty constructor.
I have a WPF grid with DatePicker as a CellEditTemplate.
When I open a new record, I get the date 1/1/0001
The ...
1
vote
0answers
156 views
Javascript prototype constructor/init
What is the correct way of prototyping a "constructor" like function into every function?
For example,
function add(number1,number2){
alert(number1 + number2);
}
Object.prototype.constructor = ...
1
vote
0answers
201 views
PHP Memcache call in constructor
Im in the process of updating some object models to cache their data to memcache and then fall back to the regular old sql query if no cache key is found. Originally, the constructors look something ...
1
vote
0answers
75 views
How to detect which constructor was used to create instance by Windsor?
I have a class with multiple constructors. Is it possible to detect which constructor Windsor used to create instance?
1
vote
0answers
175 views
Difference between the different DuplexChannelFactory<TChannel> constructors
what is the difference between the three following constructors, and when do i use each of them. sorry for this basic question :
DuplexChannelFactory(InstanceContext)
DuplexChannelFactory(Object)
...
0
votes
0answers
19 views
Array Constructors execution context
If I am working with more than one frames then i am using more than one global Execution context. Will the Array constructor be different for different execution context??? Explain it too.
0
votes
0answers
79 views
Constructor as a friend in C++?
I'm trying to have a constructor of class A as a friend of class B.
Example:
class A
{
public:
A(int a);
private:
int a;
};
class B
{
public:
B(void);
private:
int b;
void ...
0
votes
0answers
24 views
Authenticating a web service using the constructor. Any better way?
I have a web service that I am trying to simplify the authentication process by implementing authentication in the web service's default constructor.
Currently, all of my web methods have an ...
0
votes
0answers
69 views
initialized pointers are not passed through constructor
I have two classes server and Broker . server is a member in Broker and some of its members are initialized when Broker members are initialized.
It is simple if you look at their constructors and some ...
0
votes
0answers
66 views
gprof global constructors keyed to static member
This is the same question asked in
g++ gprof global constructors keyed to static member
My apologies for being a repetitive newbie
But I identified the issue there as being the same as mine but it ...
0
votes
0answers
33 views
Passing parameters that must satisfy a condition
Suppose you have a class called BlockedRecordsFile that handles a file as a collection of fixed-length blocks (of, say, 4 Kb). Each block contains a number of Records, with the following restriction:
...
0
votes
0answers
93 views
Displaying child User Controls in Windows Forms Designer
For some reason, the Forms Designer in VS 2010 does not work as I expect it to work.
The left side of the picture shows three screenshots in design mode, the right side shows runtime mode.
In its ...
0
votes
0answers
66 views
passing variable to a constructor in c++
I have a problem with my code in c++. I am new to class thing in c++. I have written this code
////////////////////Kernel 5 order////////////////////
class kernel
{
private:
double factor, s, ...
0
votes
0answers
51 views
Class extends an abstract class with two constructors. How can I create an object calling one, but have it return an object from the other?
I've searched the internet but I can't really find an answer to this particular question. Perhaps I just don't know how to ask it. I have a class "DFA" and an abstract class it extends from called ...
0
votes
0answers
34 views
Using the changed value of an integer outside the method
I am trying to do my assignment Tetris and I got stuck in a part and I can't find a way to solve my problem, so I decided to ask it here.
I created an integer array named "board" within the default ...
0
votes
0answers
67 views
c++ Implement a class using static memory to dynamic memory
So I have this class called LlistaEquips which has a table of another class called equip.
I have it on static memory but I need to do it with dynamic memory now. This is my LlistaEquips.h I have to ...
0
votes
0answers
52 views
Python — passing a populated list as a parameter for a constructor comes out as an empty list in the object
new to stackoverflow and new to Python. I appreciate all help given! I'm trying to call the constructor for a class and hand it a populated list. However, when the object is created the list is empty. ...
0
votes
0answers
50 views
Calling constructor from component class
I try to load a Model on the fly in my Component. Witch create a CSV-file and send it back using the url-parameters. The Problem is that I cant even mention or find a proper solution to call the ...
0
votes
0answers
104 views
Objective c, construcor is not called
I am testing my first app and something strange is happening.
I have 3 classes.
first one in ACTIVITY class.
i gave it this constructor :
-(id) initWithIndex: (int)index AndTitel: ...
0
votes
0answers
35 views
Cedet autocomplete constructors in cpp project
I would like to know if there is a possible way to configure auto-complete and Cedet in order to get constructors completion.
I have searched on Internet, and the only reference I got is
...
0
votes
0answers
24 views
SDL_SysWMinfo cannot be used with clang
I am trying to use SDL_SysWMinfo while compiling with apple's clang. The compiler cannot autocreate a default constructor for this class and hence this struct cannot be used. How can I work around ...
0
votes
0answers
27 views
is this object destructed during stack unwinding?
in "C++ prog..." I have seen this excerpt about constructors, destructors and exception handling mechanism:
This practice is common and can lead to ‘‘memory leaks.’’ If an
exception is thrown by ...
0
votes
0answers
88 views
Session scoped bean multiple constructor calls
I have a session scoped bean (I have checked the imports and they are correct for ManagedBean). There is a main page which checks if the user has been authenticated by calling one of the get methods ...
0
votes
0answers
87 views
Segfault on C++ class dynamic allocation - memory limit? Exception is not caught
I've got the makings of a linked list structure that appears to be segfaulting when the constructor is called when dynamically allocating the array. I'm a little new to most of this, but I find it odd ...
0
votes
0answers
24 views
Get an instance of Class which it's constructor has a Class type param by using java reflection
I want to call the function loadEFLinearFixed(...) in class com.android.internal.telephony.IccFileHandler using reflection, but the param of IccFileHandler's constructor is `PhoneBase? .
How could I ...
0
votes
0answers
82 views
Empty SESSION after changing way of connection to the db
I'm creating a cart class, which worked before while I used a global db variable, but now after I establish a connection in the constructor, the get variable becomes empty. Which results in a empty ...


