long l_mem;
};
typedef S StructArray[20];
相关测试代码如下:
#include
using namespace std;
int main() {
FloatArray my_f = { 1.0, 2.0, 3.0 };
my_f[3] = my_f[2];
StrArray my_str;
my_str[0][0] = CORBA::string_dup("Hello"); // Transfers ownership
my_str[0][1] = my_str[0][0]; // Deep copy
StructArray my_s;
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/