Comments: Method for repeating a string n times in C #

Source: Internet
Author: User

It is suddenly necessary to repeat a string n times instead of a loop method, and the result is not.

Csdn was found, and people said no. There are many ways to find the most efficient. Post it and give it to everyone as the highest efficiency


Public
Static
StringRepeatstring (StringSTR,IntN)

{


Char[] Arr = Str. tochararray ();


Char[] Arrdest =New
Char[Arr. length * n];


For(IntI = 0; I <n; I ++)

{


Buffer. Blockcopy (ARR, 0, arrdest, I * arr. length * 2, arr. length * 2 );

}


Return
New
String(Arrdest );

}

It seems that memory allocation is highly efficient, maybe ~~ :)

Will it be inefficient to change this method to a generic one?


Public
Static
StringRepeatstring <t> (t str,IntN)

{


StringS = Str. tostring ();


Char[] Arr = S. tochararray ();


Char[] Arrdest =New
Char[Arr. length * n];


For(IntI = 0; I <n; I ++)

{


Buffer. Blockcopy (ARR, 0, arrdest, I * arr. length * 2, arr. length * 2 );

}


Return
New
String(Arrdest );

}

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.