Попытка запустить это:
// appending to string
#include <iostream>
#include <string>
int
main()
{
std::string str;
std::string str2 = "Writing ";
std::string str3 = "print 10 and then 5 more";
// used in the same order as described above:
str.append(str2); // "Writing "
str.append(str3, 6, 3); // "10 "
str.append("dots are cool", 5); // "dots "
str.append("here: "); // "here: "
str.append(10u, '.'); // ".........."
str.append(str3.begin() + 8, str3.end()); // " and then 5 more"
str.append<int>(5, 0x2E); // "....."
std::cout << str << '\n';
return 0;
}
Но с ошибкой на str.append (5,0x2E):
ошибка: нет соответствующей функции для вызова 'std :: __ cxx11: : basic_string :: append (int, int) '
Использование VS Code 1.43.1, работающего на Ubuntu 19.10, g cc версия 9.2.1 20191008 (Ubuntu 9.2.1-9ubuntu2).
Я пытался запустить код в Code :: Blocks 16.01 IDE и windows, но имел ту же ошибку.