please send me n example for string concatination using ACE
ACE_CString..
thanks.
What is ACE? I suggest you ask the ACE people how to do this, as it is not standard c++.
Here is an example how concatenating STL strings:
http://programmingexamples.net/index.php?title=CPP/Strings/Concatenate
ACE_CString s1 ("hello");
ACE_CString s2 ("world");
s1+=s2;
I am also not aware about ACE but but as Moschops gave the solution it sems that it is similar to standard c++
ACE_CString &operator+= (const ACE_CString &);
Concat operator (copies memory).
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.