你可以直接调用,只是要按照构造函数类型进行调用即可。如CString也有带参数的构造函数,如CString( TCHAR ch, int nRepeat = 1 );,调用时使用 
    CString s6( 'x', 6 ); // s6 = "xxxxxx" 
    就可以了。