如何在C ++中将类值赋给另一个嵌套类

时间:2013-07-17 10:28:12

标签: c++

这是第一次在Stackoverflow上提问我的问题。我的qustion是当我尝试运行此代码时收到此消息:

object.h

#ifndef __NCTUNS_nslobject_h__
#define __NCTUNS_nslobject_h__

#include <stdio.h>
#include <event.h>

//---------------------------------------------------
#include <cstdlib>      //srand()
#include <iostream>     //cout
#include <ctime>        //time()
#include <cstring>      //strcmp()
//#include "test.h"       //testing functions
#include "RSA.h"        //GenerateKeyPair()
#include "PrimeGenerator.h"     //Generate()
//#include <stdio.h>
#include <stdlib.h>
#include <sstream>
#include <string>


//---------------------------------------------------

class MBinder;

struct plist {
u_int8_t        pid;
struct plist            *next;
};

struct MBlist {
u_int8_t    portnum;
MBinder     *sendt;
struct MBlist   *next;
};
 /*=========================================================================
 Define Macros
  =========================================================================*/
#define DISABLED        0x00
#define ENABLED         0x01


/*=========================================================================
Define Class ProtoType
=========================================================================*/

class NslObject {

private: 

char        *name_;     /* Instance name */
const u_int32_t nodeID_;    /* Node Id */
const u_int32_t nodeType_;  /* Node type, eg: SWITCH, HOST.. */
u_int32_t   portid_;    /* port Id */
struct plist    *MPlist_;
    //const  KeyPair  newKeyPair;


public :
/* add for new structure engine*/
    u_int32_t       pdepth;
    struct MBlist   *BinderList;
    u_int8_t       PortNum;

//------------------------------------------------
    static KeyPair  newKeyPair ;
    //static KeyPair  *KeyPtr1 ;//= new KeyPair;
    //------------------------------------------------
u_char          s_flowctl;      /* flow control for sending pkt */
u_char          r_flowctl;      /* flow control for receiving pkt */

MBinder     *recvtarget_;   /* to upper component */
MBinder     *sendtarget_;   /* to lower component */


NslObject(u_int32_t, u_int32_t, struct plist*, const char *);
NslObject();
virtual         ~NslObject();   
virtual int     init();
virtual int     recv(ePacket_ *); 
virtual int     send(ePacket_ *); 
virtual int     get(ePacket_ *, MBinder *);
virtual int     put(ePacket_ *, MBinder *);
virtual ePacket_    *put1(ePacket_ *, MBinder *);
virtual int     command(int argc, const char *argv[]); 
virtual int     Debugger();


inline  void    set_port(u_int32_t portid) { 
        portid_ = portid; 
    };   
inline u_int32_t get_port() const { 
        return(portid_); 
    }; 
inline struct plist* get_portls() const {
        return(MPlist_);
    };
inline const char * get_name() const {
        return(name_);
    }
inline u_int32_t get_nid() const {
        return(nodeID_);
    }
inline u_int32_t get_type() const {
        return(nodeType_);
    }
    //--------------------------------------------------------

  static  void Set_KeyPair(void);

//  NslObject(const KeyPair &newKeyPair):
//  newKeyPair(newKeyPair) {
//  }
 //NslObject( KeyPair &other, u_int32_t &N_ID, u_int32_t &N_Type) : newKeyPair(other),nodeID_     (N_ID),nodeType_ (N_Type)  {}



 /*  Key(const BigInt &modulus, const BigInt &exponent) :
modulus(modulus), exponent(exponent) {
}*/

};


/* Added by CCLin to uniformly format
* debugging messages.
*/

 #define NSLOBJ_DEBUG_STRING_HEAD() do {                \
double sec;                     \
TICK_TO_SEC(sec, GetCurrentTime());         \
printf("%11.7f: [%03d]%s::%s: ",            \
        sec, get_nid(),             \
        getModuleName(this), __FUNCTION__); \
} while(0)

 #endif /* __NCTUNS_object_h__ */
Object.cc中的

void Set_KeyPair()
{
unsigned long int keyLength = 10;
//static KeyPair ADD(RSA::GenerateKeyPair(keyLength));
NslObject::newKeyPair  (RSA::GenerateKeyPair(keyLength));

//NslObject::KeyPtr
//NslObject::newKeyPair;
}

所以,我的问题是当编译器开始编译它停止在这段代码上时:

NslObject::newKeyPair  (RSA::GenerateKeyPair(keyLength));

出现的消息是:

Error:
object.cc: In function ‘void Set_KeyPair()’:
object.cc:53: error: no match for call to ‘(KeyPair) (KeyPair&)’

那么,我怎样才能将生成的密钥对类值赋给NslObject :: newKeyPair。

您的帮助将受到高度赞赏和提前。谢谢 。

1 个答案:

答案 0 :(得分:0)

如果要为其分配新值,则需要使用赋值:

NslObject::newKeyPair = RSA::GenerateKeyPair(keyLength);

您的代码尝试将其称为函数,而不是函数,因为它不是函数。

(另外,你不应该使用reserved names作为包含警卫。)