簡體   English   中英

具有模板構造函數的C ++模板類

[英]C++ Template Class with Template Constructor

我試圖在c ++中實現Properties。 我沒有為什么,但是如果我要編譯我的代碼,就會有很多錯誤。 主要思想是,模板類和模板模板構造器將提供需求信息。

如果有人可以幫助我,我將不勝感激!

編譯消息:

pi@raspberrypi ~/dev/property $ gcc -std=c++0x -o PropertyTest2 PropertyTest2.cpp
PropertyTest2.cpp:22:16: error: expected ‘;’ at end of member declaration
PropertyTest2.cpp:22:19: error: expected unqualified-id before ‘<’ token
PropertyTest2.cpp: In function ‘int main()’:
PropertyTest2.cpp:34:20: error: use of deleted function ‘PropertyTestClass::PropertyTestClass()’
PropertyTest2.cpp:8:7: error: ‘PropertyTestClass::PropertyTestClass()’ is implicitly deleted because the default definition would be ill-formed:
PropertyTest2.cpp:8:7: error: no matching function for call to ‘Property<int>::Property()’
PropertyTest2.cpp:8:7: note: candidates are:
Property4.cpp:21:2: note: template<int (** G)(), void (** S)(int&)> Property::Property()
Property4.cpp:6:7: note: constexpr Property<int>::Property(const Property<int>&)
Property4.cpp:6:7: note:   candidate expects 1 argument, 0 provided
Property4.cpp:6:7: note: constexpr Property<int>::Property(Property<int>&&)
Property4.cpp:6:7: note:   candidate expects 1 argument, 0 provided
PropertyTest2.cpp:38:20: error: no matching function for call to ‘Property<int>::Set(int)’
PropertyTest2.cpp:38:20: note: candidate is:
Property4.cpp:30:7: note: void Property<T>::Set(T&) [with T = int]
Property4.cpp:30:7: note:   no known conversion for argument 1 from ‘int’ to ‘int&’

屬性類(Property.cpp)

#ifndef __PROPERTY_FH__
#define __PROPERTY_FH__


template <class T>
class Property {
private:
    typedef T (*TGetter)(void);
    typedef void (*TSetter)(T &);

    TGetter Getter;
    TSetter Setter;


public:
    typedef T type;

    template<TGetter *G,
             TSetter *S
            >
    Property() {
        this->Getter = G;
        this->Setter = S;
    }

    T Get(void) {
        return (this->Getter)();
    }

    void Set(T &value) {
        (this->Setter)(value);
    }
};

#endif

測試文件(PropertyTest.cpp):

#ifndef __PROPERTY_TEST_FH__
#define __PROPERTY_TEST_FH__

#include <iostream>
#include "Property.cpp"


class PropertyTestClass {
private:
    // ReadWrite Property for age
    int _age;
    int AgeGetter(void) {
        return this->_age;
    }
    void AgeSetter(int &value) {
        this->_age = value;
    }


public:
    // ReadWrite Property for age
    Property<int> age<&PropertyTestClass::AgeGetter, &PropertyTestClass::AgeSetter>;
};

#endif


/**
 * Program Entry
**/
int main() {
    std::cout << "Property Test Programm\n\n";

    PropertyTestClass propTest;


    std::cout << "ReadWrite Property for age\n";
    propTest.age.Set(5);
    std::cout << propTest.age.Get() << "\n";


    return 0;
}

好的,這次解決了代碼中的所有問題。

Property.cpp:

#ifndef __PROPERTY_FH__
#define __PROPERTY_FH__

#include <boost/function.hpp>

template <class T>
class Property {
private:

    typedef boost::function <T()> TGetter;
    typedef boost::function <void(const T&)> TSetter;

    TGetter Getter;
    TSetter Setter;


public:
    typedef T type;

    Property(TGetter G, TSetter S) {
        this->Getter = G;
        this->Setter = S;
    }

    T Get(void) {
        return (this->Getter)();
    }

    void Set(const T &value) {
        (this->Setter)(value);
    }
};

#endif

PropertyTests.cpp:

#ifndef __PROPERTY_TEST_FH__
#define __PROPERTY_TEST_FH__

#include <iostream>
#include <boost/bind.hpp>
#include "Property.cpp"


class PropertyTestClass {
private:
    // ReadWrite Property for age
    int _age;
    int AgeGetter() {
        return this->_age;
    }
    void AgeSetter(const int &value) {
        this->_age = value;
    }


public:
    // ReadWrite Property for age
    Property<int> age;
    PropertyTestClass() : age(
        boost::bind(&PropertyTestClass::AgeGetter, this),
        boost::bind(&PropertyTestClass::AgeSetter, this, _1))
    {}
};

#endif


/**
 * Program Entry
**/
int main() {
    std::cout << "Property Test Programm\n\n";

    PropertyTestClass propTest;


    std::cout << "ReadWrite Property for age\n";
    propTest.age.Set(5);
    std::cout << propTest.age.Get() << "\n";


    return 0;
}

輸出:

$ ./a.out 
Property Test Programm

ReadWrite Property for age
5

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM