4
votes
2answers
151 views
Delphi/pascal: overloading a constructor with a different prototype
I'm trying to create a child class of TForm with
a special constructor for certain cases, and
a default constructor that will maintain compatibility with current code.
This i …
4
votes
4answers
195 views
Why copy constructor is not called in this case?
Hello everybody.
Here is the little code snippet:
class A
{
public:
A(int value) : value_(value)
{
cout <<"Regular constructor" <<endl;
}
A(cons …
4
votes
2answers
139 views
Require a default constructor in java?
Is there any way to require that a class have a default (no parameter) constructor, aside from using a reflection check like the following?
(the following would work, but it's hac …
2
votes
3answers
103 views
Anonymous class question
Hi,
I've a little doubt over this line:
An anonymous class cannot define a constructor
then, why we can also define an Anonymous class with the following syntax:
new class- …
1
vote
5answers
121 views
Invoking an instance method without invoking constructor
Let's say I have the following class which I am not allowed to change:
public class C
{
public C() { CreateSideEffects(); }
public void M() { DoSomethingUseful(); }
}
an …
1
vote
7answers
141 views
Proper way to declare and set a private final member variable from the constructor in Java?
There are different ways to set a member variable from the constructor. I am actually debating how to properly set a final member variable, specifically a map which is loaded with …
2
votes
2answers
72 views
Adding code in constructor with alternative class syntax
type Foo =
class
inherit Bar
val _stuff : int
new (stuff : int) = {
inherit Bar()
_stuff = stuff
}
end
I want t …
1
vote
8answers
174 views
Is it correct to use declaration only for empty private constructors in C++?
For example is this correct:
class C
{
private:
C();
C(const & C other);
}
or you should rather provide definition(s):
class C
{
private:
C() {};
…
2
votes
8answers
235 views
C++ weird constructor syntax
Recently I've seen an example like the following:
#include <iostream>
class Foo {
public:
int bar;
Foo(int num): bar(num) {};
};
int main(void) {
std::cout << …
6
votes
6answers
163 views
Object-Oriented Perl constructor syntax
I'm a little confused about what is going on in Perl constructors. I found these two examples perldoc perlbot.
package Foo;
#In Perl, the constructor is just a subroutine called …
0
votes
3answers
60 views
Constructor with custom classes as arguments, throws ‘No matching function for call to…’
Howdy all,
I'm trying to create a constructor for a custom type, but for some reason, it's trying to call, what I'm guessing is the constructor in the constructor definition of an …
0
votes
4answers
101 views
Expected contructor, destructor, or type conversion before ‘<’ token
From what I can gather from Google, I must have syntax/parsing error but I can't seem to locate it..
This is my header file:
#include <fstream>
#include <iostream>
# …
1
vote
2answers
41 views
What role do ActiveRecord model constructors have in Rails (if any)?
I've just been reading this question which is about giving an ActiveRecord model's date field a default value. The accepted answer shows how to set the default value from within th …
6
votes
7answers
283 views
Who deletes the memory allocated during a “new” operation which has exception in constructor
I really can't believe I couldn't find a clear answer to this...
How do you free the memory allocated after a C++ class constructor throws an exception, in the case where it's ini …
2
votes
6answers
228 views
Using a class in its constructor C# - Does it smell?
Does the code below smell? I'm refactoring some code and have discovered this circular relationship where foo needs a class which needs an interface which foo itself implements.
I …
