Differences between strcpy, sprintf, and memcpy

Source: Internet
Author: User

The difference between these functions is that the implementation functions and the operation objects are different.
The strcpy function operates on a string to copy the source string to the target string.
Objects operated by the snprintf function are not limited to strings: although the target object is a string, the source object can be a string or any basic type of data. This function is mainly used to convert (string or basic data type) to a string. If the source object is a string and the % s format character is specified, you can also copy the string.
The memcpy function, as its name implies, is a memory copy function that copies the content of one memory block to another. The memory block is determined by its first address and length. The entity object that appears in the program, no matter what type, is expressed as occupying a place (a memory interval or block) in the memory ). Therefore, memcpy's operation object is not limited to a certain type of data, or can be applied to any data type, as long as it can provide the initial address and Memory Length of the object, and the object can be operable. Given the features of long copies such as memcpy functions and the physical meaning of data types, memcpy functions are generally limited to copying data of the same type or between objects, of course, it also includes copying strings and basic data types.
For string copying, the above three functions can be used, but their implementation efficiency and ease of use are different:

  • Strcpy is undoubtedly the most appropriate choice: High Efficiency and convenient calls.
  • Snprintf requires additional format characters and format conversion, which is troublesome and inefficient.
  • Although memcpy is efficient, it requires an additional parameter of the copied memory length, which is easy to error and inconvenient to use. If the length is too large (the optimal length is the length of the source string + 1 ), it will also bring about a reduction in performance. In fact, the strcpy function is generally implemented internally by calling the memcpy function or using the Assembly directly to achieve efficient purposes. Therefore, using memcpy and strcpy to copy strings should have no major performance difference.

For non-string data replication, strcpy and snprintf are generally powerless, but there is no impact on memcpy. However, for basic data types, although memcpy can be used for copying, since the value assignment operator can be used to conveniently and efficiently copy data of the same or compatible type, therefore, memcpy is rarely used in this case. Memcpy is used to copy the structure or array (usually internal). Its purpose is to be efficient, convenient to use, or even both.
In addition, the functions of strcpy and memcpy are also different: for example, const char * str1 = "abc/0def"; char str2 [7];
First, use strcpy: strcpy (str2, str1) to get the result: str2 = "abc"; that is, strcpy ends with '/0.
Use memcpy to implement: memset (str2, 7); memcpy (str2, str1, 7); get the result: str2 = "abc/0def"; that is, memcpy is a replication of the memory area. Of course, not only can we copy string arrays, but also other arrays such as integer arrays.

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.