哪位大神对boost比较了解的声明了struct ST_ROW{offset_ptr szRow;};
想要把szRow指向一个字符串,怎么做
struct ST_ROW{offset_ptr szRow;};string desString = "des string";ST_ROW ptrRow;ptrRow.szRow = desString;试试