gpt4 book ai didi

c++ - 从 CORBA::Char* 到 CORBA::Char 的无效转换

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:25:23 27 4
gpt4 key购买 nike

我目前停电了,我是 c++ 和 CORBA 的新手。我试图分配一个 CORBA::Char,但我收到编译器错误“错误:从‘CORBA::Char*’到‘CORBA:Char’的无效转换。有没有人知道我的代码有什么问题以及如何写对了吗?

谢谢!西蒙

class Medium_impl : virtual public POA_Media::Medium {
public:
CORBA::Char gettype();
void settype(CORBA::Char);

private:
CORBA::Char type;
};

Medium_impl::Medium_impl (char* _oidstr) {
type='V';
}

void Medium_impl::settype(CORBA::Char _type){
type = _type;
}

CORBA::Char Medium_impl::gettype(){
return type;
}

我在测试方法 aref ->settype(type[i]); 中得到错误

void Mediathek_impl::test (void) {

CORBA::Char type[10][1];

strcpy(type[0],"V");

for(int i = 0; i<=9;i++){
char oidstr[20];

sprintf(oidstr,"medium_%d.acc",count);
PortableServer::ObjectId_var tmpoid=PortableServer::string_to_ObjectId(oidstr);

CORBA::Object_var obj = mypoa->create_reference_with_id (tmpoid,"IDL:Medium:1.0");
::Media::Medium_ptr aref = ::Media::Medium::_narrow (obj);
assert (!CORBA::is_nil (aref));
oid[count] = mypoa->reference_to_id(aref);

//here I get the Compiler-error
aref ->settype(type[i]);

count ++;
}

最佳答案

type 声明为:

CORBA::Char type[10][1];

然后,type[i]CORBA::Char* 并且构建器提示不知道如何将其转换为 CORBA::Char。我想你想要:

aref ->settype(type[i][0]);

CORBA::Char type[10];

strcpy(type,"V");

关于c++ - 从 CORBA::Char* 到 CORBA::Char 的无效转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20174220/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com