Javaを念頭に置いた非常に基本的なコードがあります。オブジェクトとクラスのクラスを作成しましたが、テンプレートで作成しました。
オブジェクト.hpp
#ifndef _OBJECT_HPP_
#define _OBJECT_HPP_
namespace library{
template<class T> class Object;
template<class T> class Class;
class Uint_32;
template<class T>
class Object{
public:
const static Uint_32& UNIQUEID;
private:
const Class<T>& myClass;
const static Class<T>& ref;
protected:
Object(Class<T>& myReference);
Object();
};
}
#endif
オブジェクト.cpp
#include "include//lang//template//Object.hpp"
#include "include//lang//template//Class.hpp"
#include "include//lang//Uint_32.hpp"
#include "iostream"
using namespace std;
using namespace library;
template<class T>const Uint_32& Object<T>::UNIQUEID=Uint_32(1);
template<class T>const Class<T>& Object<T>::ref=Class<T>();
template<class T>
Object<T>::Object(Class<T>& myReference):myClass(myReference){cout<<"
checking ";}
template<class T>
Object<T>::Object():myClass(ref){cout<<"ohk";}
Class.hpp
#ifndef _CLASS_HPP_
#define _CLASS_HPP_
#include"include//lang//Object.hpp"
namespace library{
template<class T>
class Class:public virtual Object<T>{
public:
Class();
const static Uint_32& UNIQUEID;
};
}
#endif
Class.cpp
#include "include//lang//template//Class.hpp"
#include "include//lang//Uint_32.hpp"
using namespace library;
template<class T>const Uint_32& Class<T>::UNIQUEID=Uint_32(2);
template<class T>
Class<T>::Class():Object(*this){
cout<<" hello ";
}
Uint_32.hpp
#ifndef _UINT_32_HPP_
#define _UINT_32_HPP_
#include "include//lang//Class.hpp"
#include "include//lang//Operators.hpp"
namespace library{
class Uint_32:public virtual Class<Uint_32>{
public:
Uint_32();
Uint_32(const int&&);
friend Uint_32& operator+(const Uint_32& a,const Uint_32& b);
friend Uint_32& operator<<(const Uint_32& a,const int& b);
const static Uint_32& UNIQUEID;
private:
int value;
};
}
#endif
Uint_32.cpp
#include "include//lang//Uint_32.hpp"
using namespace library;
const Uint_32& Uint_32::UNIQUEID=Uint_32(3);
Uint_32::Uint_32():Class<Uint_32>(){
value=0;
cout<<" here ";
}
Uint_32::Uint_32(const int&& val):Class<Uint_32>(){
value=val;
cout<<" there ";
}
t1.cpp
#include "include//lang//Uint_32.hpp"
using namespace library;
int main()
{
cout<<"\n";
Uint_32 a,b;
return 0;
}
コンパイル コマンド:
g++ -std=c++14 -I. -c src//lang//Uint_32.cpp -o obj//lang//Uint_32.o
g++ -std=c++14 -I. src//test//t1.cpp obj//lang//Uint_32.o -o bin//test
やっと今のところコンパイルエラーはありません。すべてのオペレーターのテンプレート定義だけを含む、operators.hpp を含むもう 1 つのファイルがあります。
OUTPUT 実行可能ファイルを実行すると、次の出力が表示されますが、おそらく理由がわかりません。あらゆる方法を試して知りました。また、異なるバージョンの異なるシステムで実行します。
ohk hello there checking hello
ohk hello here ohk hello here
ここで何が起きてるの?継承が正しく呼び出されないのはなぜですか? 安全ではないため、このポインターを渡すべきではないことはわかっていますが、代替手段はないと思います。
私の問題
Object<T>::Object(Class<T>& myReference)
は 1 回だけ呼び出されますが、3 回呼び出す必要があります。- 私のポイントでは4つのオブジェクト作成があり、3または5のいずれかでなければなりません(t1.cppのaとb、およびすべてのクラスのUNIEQUEID初期化.
- コンストラクター呼び出しの Class.cpp ファイルでこれが機能しないのはなぜですか?
Object<T>::Object()
T = Object クラスになるように Object クラスを作成してコンストラクターを呼び出すことができるかどうかを確認する方法はありますか?