Thread: C++ String: How to assign or compare strings?

C++ String: How to assign or compare strings?

  1. #1
    Join Date
    Jun 2001
    Location
    Switzerland
    Posts
    4,443

    C++ String: How to assign or compare strings?

    Q: How to assign or compare strings?

    A: Assignment and comparison are not necessarily related, but we decided to handle them together because the mistakes made by programmers beginning with C++ have a common root, that is, the tendence to use a 'natural' syntax.

    Assignment

    This actually is an issue only when working with C-style strings, i.e. 'char*'. The most common mistake is this:

    Code:
    char *s1, *s2;
    //...
    s2 = s1; // might not do what one would think

    This statement assigns to the char pointer 's2' the same vale as 's1'. With other words, 's1' and 's2' will point to one and the same address in memory. By no means is the string 's1' copied into 's2'.

    Another mistake that is frequently made by beginners is something like this:

    Code:
    char* s = "Hello";
    s[1] = 'a';             // attempting to change the 'e' to an 'a'
    //...

    Chances are to get an access violation when running this code. The reason is that, again, the assignment applies to the char pointer 's', i.e. it will point to the address of the constant string literal "Hello'. Since the compiler is allowed to place such const literals in read-only memory, attempting to modify it has undefined results.

    The correct solution is to use the 'strcpy()' function or one of its relatives.

    Code:
    char *s;
    s = new char[strlen("Hello") + 1];  // reserve one byte for the trailing '\0'
    strcpy(s, "Hello");
    //...
    delete[] s;

    Both 'CString' and the Standard C++ class 'std::string' are user-friendly and take care by themselves of this details. This code is perfectly ok:

    Code:
    #include <string>
    
    std::string s;
    s = "Hello";
    s[1] = 'a';

    Comparison

    This also is an issue only when working with C-style strings, i.e. 'char*'. The most common mistake is this:

    Code:
    char *s1, *s2;
    
    if(s1 == s2)       // wrong!!!!

    This statement may seem to be the natural syntax, but it unfortunately compares the value of two char pointers and by no means the strings they point to. To compare C-style strings you have to use the 'strcmp()' function or one of its relatives:

    Code:
    char *s1, *s2;
    
    if(!strcmp(s1, s2))

    Note, that 'strcmp()' returns 0 if the strings are identical, thus, the '!strcmp(...)' in the if statement. Have a look in e.g. MSDN for further details on 'strcmp()' and other string comparison functions.

    Both 'CString' and the Standard C++ class 'std::string' have overloaded comparison operators, which leads to a more natural syntax:

    Code:
    #include <string>
    
    std::string s1, s2;
    if(s1 == s2)

    All this being said, it should be clear why you always should prefere working with a string wrapper class over working with C-style strings. And there is much more std::string can do for you than this!

    Last edited by Andreas Masur; July 24th, 2005 at 07:32 AM.

原文链接: https://www.cnblogs.com/lexus/archive/2013/01/14/2859094.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    Thread: C++ String: How to assign or compare strings?

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/75494

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月9日 下午5:03
下一篇 2023年2月9日 下午5:03

相关推荐