A special type of subroutine called at the creation of an object.
-1
votes
0answers
14 views
The constructor Geocoder is undefined
I have the error "The constructor Geocoder(new View.OnClickListener(){}, Locale) is undefined" in this code block.
I have imported android.location.Geocoder class, and I've tried to rename "this" for ...
0
votes
1answer
26 views
How do I use an initializer list with a base class?
Given the following:
struct A
{
int foo;
int bar;
};
struct B : public A
{
int baz;
};
How would I construct a B with an initializer list that also constructs the elements in A? The ...
5
votes
4answers
113 views
What properties are guaranteed by constructors in Java?
I used to think that, intuitively speaking, a constructor in Java is the thing that makes an object, and that nothing can touch that object until its constructor returns. However, I have been proven ...
2
votes
2answers
44 views
Confused by the use of Parent to Child in a constructor
I hope I can get some clarification regarding this issue. So a class hierarchy looks like this:
AbstractClass, ConcreteClass1 and ConcreteClass2. ConcreteClass1 extends AbstractClass and ...
1
vote
1answer
37 views
A const data member [duplicate]
So I have a class which has a const string data member.
the string itself in received from the user.
how do I write a constructor that can use it and how do i get the string from the user and put it ...
13
votes
4answers
322 views
What is the difference between a class having private constructor and a sealed class having private constructor?
Is there any difference between A and B?
Class A has private constructor:
class A
{
private A()
{ }
}
Class B is sealed and has a private constructor:
sealed class B
{
private B()
...
5
votes
1answer
95 views
Determine which copy constructors is called in C++ code
I have written a simple C++ class example with 1 non-param constructor, 1 param constructor, 2 copy constructors, 1 assignment operator and 1 plus operator.
class Complex {
protected:
float real, ...
2
votes
2answers
61 views
Using object inside constructor
I am creating my own vector class inheriting the STL one. I have a problem while creating the object.
Here is my class.
using namespace std;
template <class T>
class ArithmeticVector : ...
0
votes
1answer
60 views
Why not constructor of super class invoked when we declare the object of sub class?
I am a Java programmer, beginner in Python programming. I have noticed unexpected behavior in python programming. I was expecting the print sequence as B class ,A Class constructors. But it's ...
2
votes
2answers
57 views
Uninitialized reference member in C++
I have made class in C++ and I wanted it to have a field Osoba& but I get an weird error:
class Rachunek{
public:
Osoba& wlasciciel;
double stan_konta;
Rachunek(Osoba* wlasciciel, ...
0
votes
3answers
44 views
Python Class gives “None in the ouptut”
I have the following code:
class StudentData:
"Contains information of all students"
studentNumber = 0;
def __init__(self,name,age,marks):
self.name = name;
self.age = ...
0
votes
1answer
35 views
Constructor failed to take input arguments [closed]
I am new to Python. I had been following online tutorials about python classes but I get a strange error.
I can't figure out what worng have I done.
Below is my code:
class StudentData:
"Contains ...
3
votes
6answers
87 views
Using 'this' when initializing an instance variable in java?
I've seen this used when declaring an instance variable in IB's API, but this seems like a bad idea. Is assignment guaranteed to occur after this has been fully constructed? Does it matter?
I thought ...
-2
votes
3answers
54 views
Cannot figure out ClassNotFoundException error
Here is my code:
Getters, Setters, and imports are excluded
Part Class:
public class Part{
private String name;
private String id;
private int quantity;
private BigDecimal ...
0
votes
1answer
38 views
Another Method Definition in Constructor call?
I'm looking at the Hive Opensource Code and came across a weird constructor call:
public ResultSet getUDTs(String catalog, String schemaPattern,
String typeNamePattern, int[] types) throws ...
3
votes
4answers
43 views
When to throw exceptions for constructor
public Neocortex(Region rootRegion, ConnectionInterface functor) {
this.rootRegion = rootRegion;
this.currentRegion = this.rootRegion;
this.functor = functor;
}
Hey above I have the constructor for ...
0
votes
4answers
93 views
Control Instances of a class
I have implemented a class as below:
public class Person
{
public int d, e, f;
public Person()
{
}
public Person(int a)
{
}
public Person(int a, int b)
{
...
0
votes
2answers
110 views
Class Constructor in Java [closed]
I am designing a basic inventory style program to handle quantities of parts. I'm designing this data type in order to hold all the information that I take from a .csv file. The DataAccess class is ...
4
votes
2answers
54 views
Pass Parameter to Base Class Constructor while creating Derived class Object
Consider two classes A and B
class A
{
public:
A(int);
~A();
};
class B : public A
{
public:
B(int);
~B();
};
int main()
{
A* aobj;
B* bobj = new bobj(5);
}
Now the ...
-1
votes
3answers
67 views
Is getConstructor() really call the constructor?
public MyClass {
public HashMap<String, String> fu;
public MyClass() {
fu = new HashMap<>();
}
public void myMalloc() {
fu = new HashMap<>();
}
}
Class<?> cl = ...
0
votes
1answer
25 views
RegExp constructor properties input
Setting the global flag to true:
<script>
var str="I am really puzzled up";
var str1="Being puzzled is first step towards understanding";
var patt=new RegExp("puzzled","gi");
patt.exec(str);
...
1
vote
1answer
31 views
Why is $db PDO object passed as null in constructor parameter?
I'm wondering why in the PHP code below, the PDO objects $db is passed as NULL. i.e. $db=NULL in the constructor parameter.
class ColoredListsUsers
{
/**
* The database object
* @var ...
0
votes
1answer
43 views
Trying to understand composition between c++ classes
I am having a hard time getting my head around how to correctly perform composition between C++ classes. Here is an example of where I'm getting stuck:
#include <iostream>
using namespace std;
...
1
vote
1answer
20 views
jmockit mocked constructor not returning expected value
I am trying to unit test a class where one of its methods returns an instance of a collaborator class: depending on the values of its arguments it either returns a newly created instance, or a saved, ...
1
vote
2answers
41 views
Linker error from not declaring abstract method in abstract base class?
I have an abstract base class Foo with an abstract method called bar.
I'm calling bar from Foo's constructor. I'm expecting subclasses to override bar (it is abstract after all) and then Foo to call ...
0
votes
1answer
52 views
Can't find .dtors and .ctors in binary
I am reading the book Hacking, tha art of exploitation. In the book there is a section that explain the use of .dtors and .ctors. I'm trying to reproduce one of the exercices of the book but in my ...
3
votes
5answers
68 views
Too many constructor arguments in deepest class of inheritance?
I want a general solution on how to avoid insanely high number of constructor arguments.
The examples I'm providing here are just examples, and I don't want a specific answer for the exact example ...
1
vote
3answers
64 views
Java - symbol not found (constructor)
So I'm writing some code that reads from a file:
array[k] = Salesperson(infile.nextInt(), infile.nextInt(), myName);
I wrote a constructor for Salesperson that looks somewhat likes this:
public ...
0
votes
6answers
110 views
In this example for the C++ Documentation Tutorial, why are the pointers declared twice?
I'm working through the C++ Documentation Tutorial, and I'm having some trouble understanding this example of using pointers in a constructor:
// example on constructors and destructors
#include ...
2
votes
4answers
71 views
C# related on Constructor and Property
I am building some tiny lib, and I have run into a problem.
I want to provide a two-way solution, for example:
How can I accomplish this?
I am getting exception thrown, because it expects ...
0
votes
2answers
74 views
How to look at Constructors in OOP [closed]
In most OOP books and articles, we read something like this about constructors:
Constructor is a specialized method in a class, it’s name is identical
to the class name, and it has no return ...
2
votes
6answers
98 views
How to define `health` and `maxHealth` in one object, when `healt` can't be higher than `maxHealth`?
I have a class called Warrior that has uint m_health and uint m_maxHealth attributes.
I want my constructor to take parameters Warrior(uint health, uint maxHealth).
Now I've studied C++ alot and I ...
4
votes
3answers
58 views
Why we can't call methods of Date() class without new operator
Suppose I define a variable like this
var today = Date();
console.log(today.getMonth()); // Throw Error
while other class like Error class call their methods without new operator.
function ...
0
votes
2answers
72 views
Java - Parameter declaration
I'm studying this piece of code, it is a constructor with several parameters. The declaration of the last parameter with ... What does this mean?
/**
* Public constructor.
* @param servicePort ...
0
votes
2answers
101 views
Super constructor call
In Java, if my class extends a super class and by default the first line of the constructor is Super(), are the fields of the super class initialized, or is just the constructor run?
Also, if the ...
1
vote
1answer
20 views
PDO Wrapper Class - If Connected Check
I'm writing a PDO Wrapper as a bit of a learning project and I'm trying to combine it with using dependency injection. My current set up has a factory that will set dependencies. So, for example, I'll ...
1
vote
5answers
56 views
Best practice with classes [closed]
'I have a question about the best way to handle class properties.
For ease of explanation, lets say I have a class called company. "Company" has single properties, such as "name", "address" etc. In ...
1
vote
2answers
24 views
JavaScript calls to methods from within constructors
I was reading the re-introduction to JavaScript on MDN website and came across this in the Custom Objects section:
function personFullName() {
return this.first + ' ' + this.last;
}
function ...
2
votes
1answer
50 views
Inheritance of templated class members in constructor
I posted a very similar question and got my answer. I'm now facing the same issue with the constructor..
How would one write the constructor for T2 ?
template<typename T>
class T1
{
...
1
vote
5answers
56 views
Checking Variables In The Constructor
I am learning ruby and know that in other languages I can ensure that variables are not empty when initializing.
How would I do this in Ruby with this example?
class Person
attr_reader :name
...
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
6answers
67 views
Constructors called due to static initialization
I am going through Thinking in Java by Bruce Eckel 4th Edition. In the chapter Initialization & Cleanup, page : 189 the first bullet point in the second para mentions:
Even though it doesn't ...
1
vote
3answers
75 views
What is the correct way to initialize an instance of an object within matrix of struct?
What is the correct way to initialize an instance of an object within matrix of struct?
My constructor Cita(int, int) need two parameters to create a new instance, but when I compile the program my ...
1
vote
4answers
41 views
Scoping issues when chaining class constructors
Why does the following not work when chaining constructors:
#include <iostream>
#include <vector>
class cls {
public:
cls() {cls(5);} // want to resize v to 5
...
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 ...
1
vote
3answers
87 views
Problems with copy constructor
Dont pay attention to the actual code, just read the question.
I have a function that takes 2 parameters of type Polynomial:
FiniteFieldElement(int l, Polynomial p, Polynomial irr)
{
this->l = ...
1
vote
2answers
54 views
Invoking constructor of derived class execute before constructor of base class
Well, originally I had a couple of constants (like MAX_SPEED) with different values in every of the derived classes. The idea was to use those values in some methods of the base class. That's when I ...
0
votes
1answer
21 views
Getting a constructor error in processing
I'm playing with processing from some days, but I encountered an error that i didn't understand. I declared the class and the constructor with the proper arguments, maybe you can help me. This is the ...
10
votes
2answers
176 views
How to overload constructors on signature of a std::function?
I'm trying to write a class with overloaded constructors that accept std::function objects as parameters, but of course every damn thing can be implicitly cast to a std::function of any signature. ...
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 ...





