You want to enhance the performance of appending 1000000 characters to a string ? Simple answer would be - don't do it this way. Use QString::reserve to preallocate the string buffer and then insert characters into given position, this should work faster.





Reply With Quote

Bookmarks