Maybe the C++ and Java people can help me to define this problem I'm going to explain. I have a problem in Ada (you don't need to know it, I'm just interested in the concept) on how representing a Constructor of a class which implements three main branches of dynamic identifiers:
- Pure number values (int, float, String, whatever)
- List/stack item
- Something what in C++ is likely a thread (in Ada we have a more wide concept of this, related to a task, but we can concept a simple task as a thread, so the concept applies too)
I'm gonna call this class Par_Class, and be any constructed object call Par_Obj. Thus, when an object Par_Obj is created (so, the number values are initialized, the lists/stacks have other lists/stacks allocated or null and the memory range for the thread execution is reserved), the OS automatically starts the execution of the new thread in parallel with my main application (and now they contend for system resources). But to simplify the example, let's suppose I'd have a class with an integer and a pointer to a string.
In C++, I could code, for example, (please correct me if I'm doing wrong)
class Par_Class {
public:
Par_Class (int aValue, const std::string & aName);
private:
int theValue;
std::string theName;
};
the constructor could be implemented as
Par_Class::Par_Class (int aValue, const std::string & aName)
: theValue(aValue)
, theName(aName)
{
}
and finally we could instantiate this class with
Par_Class Par_Obj (23, "My object is this");
and sure this constructor method belongs to the class Par_Class and not to any other class.
Similarly, in Java, we could code
public class Par_Class {
private int theValue;
private String theName;
public Par_Class (int aValue, String aName){
theValue = aValue;
theName = aName;
}
};
and we could instantiate the object using
Par_Class Par_Obj = new Par_Class (23, "My object is this");
(again please correct me if I'm wrong). Again, Par_Class constructor is a method of the class Par_Class.
In Ada 2005, this class could be coded as
--par_pkg.ads
package Par_Pkg is
type Par_Class is tagged private;
type Par_Class_Ptr is access all Par_Class;
type Integer_Ptr is access Integer;
function Construct
(P : access Par_Class; aValue : Integer; aName : Integer_Ptr)
return Par_Class_Ptr;
private
type Par_Class is tagged
record
theValue : Integer;
theName : Integer_Ptr;
end record;
end Par_Pkg;
-- par_pkg.adb
package body Par_Pkg is
function Construct
(P : access Par_Class; aValue : Integer; aName : Integer_Ptr)
return Par_Class_Ptr is
pragma Unreferenced (P);
P_Ptr : constant Par_Class_Ptr := new Par_Class;
begin
P_Ptr.theValue := aValue;
P_Ptr.theName := aName;
return P_Ptr;
end Construct;
end Par_Pkg;
and the user could call
with Par_Pkg; use Par_Pkg;
procedure Par_Main is
Par_Obj : Par_Class_Ptr;
Int_Obj : Integer_Ptr;
begin
Int_Obj := new Integer;
Int_Obj.all := 12; -- don't worry about been string or integer
Par_Obj := Par_Obj.Construct
(aValue => 23,
aName => Int_Obj);
end Par_Main;
And that's where resides the problem. The compiler says me that I could not use the method Construct in Par_Obj := Par_Obj.Construct because yet my object is null. But it's so obvious, because just what I want to do is to initialize the object (so it would not be null anymore). There are other ways of constructing the object, for example, using a function from outside the class, but I don't want to use this approach because it runs away from architecture. Could you please help me to formulate the problem to my Ada friends so they can help me to implement it in Ada? I guess I'm having a bit difficult on explaining this in general concept terms. Thanks.
Answer
@paercebal gave me what I think could achieve my goal:
- "Is there a way to have a "static" function declared inside Par_Class?" and "is there a way to have an non-member function declared friend of Par_Class?"
I could complete it with "is there a way to have a "static" function declared inside a tagged type? Also, could the package where the class is declared act as a friend or as a static function?"
Update
Got some more good reasons on why implementing it as suggested by @SimonWright and some people from comp.lang.ada forum:
function Construct (aValue: Integer; aName: Integer)
return Par_Class is
begin
return (theValue => aValue,
theName => aName);
end Construct;
So I asked: In this case function Construct would behave as a C++ static function (or maybe a friend one?)?
And Dmitry Kazakov answered:
That depends on what you mean. In Ada:
there is no hidden parameters
an operation can be dispatching (virtual) in any combination of parameters and/or result. But an operation cannot be dispatching in more than one type (no multiple dispatch). All tags of dispatching parameters must be same (no multi-methods).
there is no static or friend operations as the visibility rules are based on packages.
The function Construct above is a primitive operation, it is not a constructor.
Constructors in Ada are implicit, they consist of
construction of the components (in an unspecified order, recursively);
a call to Initialize if the type is a descendant of Ada.Finalization.[Limited_]Controlled. (Overridden bodies of Initialize are not called! I.e. Ada constructors do not traverse derivation path. In short, aggregation is safe, derivation is not;
starting all task components. (Note, tasks are not running when Initialize is called!)
Destructors act in the reverse order: tasks - Finalize - components.
And I guess it responds. Thank you people.
strcpy) into a pointer that wasn't allocated. You should either usemalloc/newto allocate it to the right size, and then do thestrcpy. Perhaps your Ada error is similar: In Ada, do you need to "allocate" somehow your class or its record before initializing its values? – paercebal Nov 10 '11 at 3:27char *type. Replace it withString. In the same way, a correct C++ code would probably have astd::stringinstead of achar *, to avoid the whole "you need to do the allocation by hand" problem. – paercebal Nov 10 '11 at 3:30