本文介绍了科尔巴概念的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我遇到一个代码:
I am coming across a code:
CORBA::Any anyString;
anyString <<= m_structReturn.structReturnOnly.strAssessmentType;
有人可以清楚地向我解释上述含义(那个<< =运算符)吗?
提前谢谢,
Deepak
Can someone explain to me the meaning of the above lucidly (that <<= operator)?
Thanks In advance,
Deepak
推荐答案
anyString = anyString << m_structReturn.structReturnOnly.strAssessmentType;
这篇关于科尔巴概念的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!