Sizeof and strlen

Source: Internet
Author: User
Precautions for strlen () function evaluate and string allocation memory char STR [] = "abcdefg ";
The value of strlen (STR) is 7. (do not confuse it with the sizeof function evaluation value. sizeof also calculates '/0' in the end of the string)
Note.

Char str1 [] = "abcdefg ";
Char str2 [] = "hijk ";

After memory allocation, add the two strings and inject them into the newly allocated memory:
Char * str3 = (char *) memalloc (strlen (str1) + strlen (str2) + 1 );
Strcpy (str3, str1 );
Strcat (str3, str2 );
Differences and relationships between sizeof and strlen:

1. The result type of the sizeof operator is size_t. In the header file, typedef is of the unsigned int type.
This type ensures that it can accommodate the maximum object size.

2. sizeof is an operator and strlen is a function.

3. sizeof can be a type parameter. strlen can only be a char * parameter and must end with ''/0.
Sizeof can also be used as a parameter using a function, for example:
Short F ();
Printf ("% d/N", sizeof (f ()));
The output result is sizeof (short), that is, 2.

4. the sizeof parameter of the array is not degraded. If it is passed to strlen, It is degraded to a pointer.

5. Most compilation programs calculate sizeof as a type or variable length during compilation. This is why sizeof (x) can be used to define the array dimension.
Char STR [20] = "0123456789 ";
Int A = strlen (STR); // A = 10;
Int B = sizeof (STR); // B = 20;

6. The strlen result can be calculated only during running. It is used to calculate the string length, not the memory size occupied by the type.

7. If sizeof is a type, you must add an arc. If it is a variable name, you can do not add an arc. This is because sizeof is an operator and not a function.

8. When a structure type or variable is applied, sizeof returns the actual size,
When a static space array is used, sizeof returns the size of all arrays.
The sizeof operator cannot return the size of the dynamically assigned array or external array.

9. When an array is passed as a parameter to a function, the pointer instead of an array is passed, and the first address of the array is passed,
For example:
Fun (char [8])
Fun (char [])
It is equivalent to fun (char *)
In C ++, passing an array by parameters is always a pointer to the first element of the array. The Compiler does not know the size of the array.
If you want to know the size of the array in the function, you need to do this:
After entering the function, copy it with memcpy. The length is passed in by another parameter.
Fun (unsiged char * P1, int Len)
{
Unsigned char * Buf = new unsigned char [Len + 1]
Memcpy (BUF, P1, Len );
}

We can usually use sizeof and strlen to calculate the length of the string array.
After reading the detailed explanation above, we can see that there is a difference between the two. From this example, we can see clearly:

Char STR [20] = "0123456789 ";
Int A = strlen (STR); // A = 10; >>>> strlen calculates the length of the string, ending with 0x00 as the string.
Int B = sizeof (STR); // while B = 20; >>> sizeof calculates the memory space occupied by the allocated array STR [20, the stored content is not changed.

The above is the result of processing the static array. If it is a pointer, the result will be different.

Char * Ss = "0123456789 ";
Sizeof (SS) Result 4 ===" SS is a character pointer to a String constant. sizeof obtains the space occupied by a pointer and should be a long integer, so it is 4.
Sizeof (* ss) Result 1 = "* ss is the first character. In fact, it obtains the memory space occupied by the string's first '0', which is of the char type, takes 1 place.

Strlen (SS) = 10 >>> to obtain the length of this string, use strlen

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.