通过在C的int乘以一个字符串++(Multiplying a string by an int i

2019-06-26 19:59发布

我有什么做的,这样,当我

string s = ".";

如果我做

cout << s * 2;

这将是一样的

cout << "..";

Answer 1:

不, std::string没有operator * 。 您可以添加(字符,字符串)到另一个字符串。 看看这个http://en.cppreference.com/w/cpp/string/basic_string

如果你想这种行为(不建议这样),你可以使用这样的事情

#include <iostream>
#include <string>

template<typename Char, typename Traits, typename Allocator>
std::basic_string<Char, Traits, Allocator> operator *
(const std::basic_string<Char, Traits, Allocator> s, size_t n)
{
   std::basic_string<Char, Traits, Allocator> tmp = s;
   for (size_t i = 0; i < n; ++i)
   {
      tmp += s;
   }
   return tmp;
}

template<typename Char, typename Traits, typename Allocator>
std::basic_string<Char, Traits, Allocator> operator *
(size_t n, const std::basic_string<Char, Traits, Allocator>& s)
{
   return s * n;
}

int main()
{
   std::string s = "a";
   std::cout << s * 5 << std::endl;
   std::cout << 5 * s << std::endl;
   std::wstring ws = L"a";
   std::wcout << ws * 5 << std::endl;
   std::wcout << 5 * ws << std::endl;
}

http://liveworkspace.org/code/52f7877b88cd0fba4622fab885907313



Answer 2:

的std :: string有形式的构造方法

std::string(size_type count, char c);

将重复的字符。 例如

#include <iostream>

int main() {
   std::string stuff(2, '.');
   std::cout << stuff << std::endl;
   return 0;
}

将输出

..


Answer 3:

有没有预定义的*运营商将通过乘以一个字符串int ,但你可以自己定义:

#include <iostream>
#include <sstream>
#include <string>

using namespace std;

string operator*(const string& s, unsigned int n) {
    stringstream out;
    while (n--)
        out << s;
    return out.str();
}

string operator*(unsigned int n, const string& s) { return s * n; }

int main(int, char **) {
    string s = ".";
    cout << s * 3 << endl;
    cout << 3 * s << endl;
}


Answer 4:

字符串不能成倍增加。

如果s是一个char

'.'     //this has 46 ascii-code

然后

cout << (char)((int)s * 2);

会给你

'/'     //this has 92 ascii-code


Answer 5:

它们不能multipled但我认为你可以编写自己的函数来做到这一点,像 -

#include <iostream>
#include <string>

std::string operator*(std::string s, size_t count)
{
    std::string ret;
    for(size_t i = 0; i < count; ++i)
    {
        ret = ret + s;
    }
    return ret;
}


int main()
{
    std::string data = "+";
    std::cout << data * 10 << "\n";
}

它可能不是最好的主意,虽然,这将是非常混乱的人看代码,而不是指望这个,



Answer 6:

你可以这样做:

#include <iostream>
using namespace std; 

int main() 
{  
string text,new_text;
int multiply_number;

cin>>text>>multiply_number;

/*First time in for loop:new_text=new_text+text
                         new_text=""+"your text"
                         new_text="your text"
  Secound time in for loop:new_text=new_text+text
                         new_text="your text"+"your text"
                         new_text="your textyour text"...n times */

for(int i=0;i<multiply_number;i++){

new_text+=text; 

}

cout<<new_text<<endl;    // endl="\n"

system ("pause");
return 0;       
} 

在Python中,你可以乘这样的字符串:

text="(Your text)"
print(text*200)


文章来源: Multiplying a string by an int in c++