📄 read.cgi-read=10278.htm
字号:
<HTML><HEAD><TITLE>CString problem</TITLE>
</HEAD><BODY background="../fancyhome/back.gif" tppabs="http://www.codeguru.com/fancyhome/back.gif" bgcolor="#FFFFFF">
<table WIDTH="100%"> <tr WIDTH="100%"> <td><table>
<tr><td><img src="../mfc_sourcebook.jpg" tppabs="http://www.codeguru.com/mfc_sourcebook.jpg"
ALT="MFC Programmer's SourceBook" WIDTH="256"
HEIGHT="88"><td></tr>
<tr><td valign="bottom"><font SIZE="+1"
color="#a0a0ff"><b>Discussion Board</b></font></td></tr>
</table></td> <td width="40"></td>
<td align="right" valign="top"><td> </tr> </table> <hr><P ALIGN=CENTER>[ <A HREF="#Responses">Read Responses</A> | <A HREF="#PostResponse">Post a New Response</A> | <A HREF="index.cgi.htm" tppabs="http://www.codeguru.com/mfc_bbs/index.cgi">Return to the Index</A> ]
<A HREF="read.cgi-read=10280.htm" tppabs="http://www.codeguru.com/mfc_bbs/read.cgi?read=10280">Next in Thread</A><P ALIGN=CENTER><BIG><BIG><BIG><STRONG>CString problem</STRONG></BIG></BIG></BIG>
<P ALIGN=CENTER><EM>Posted by <STRONG><A HREF="mailto:Erich.Hermann@ETAS.de">Erich Hermann</A></STRONG> on <STRONG>4/24/98 12:27a.m.</STRONG></EM></P>
<!-- REMOTE_HOST: 195.254.27.2; REMOTE_ADDR: 195.254.27.2-->
<P>Hi,
<P>I very often need a class to return a CString, like
<P> CString MyClass::getFoo() {
<BR> return m_var1 + "\\" + m_var2;
<BR> }
<P>and I want to call like
<P> myString = myClass.getFoo();
<P>Disadvantage here is, I have to call the destructor explicitly for the
<BR>received string.
<P>But if I want to use it like
<P> myString = "1" + myClass.getFoo() + "2";
<P>I even can't call the necessary destructor. Result is a memory leak
<BR>:-(.
<P>Having a look at CString::Mid:
<P> CString CString::Mid(int nFirst, int nCount) const
<BR> {
<BR> // out-of-bounds requests return sensible things
<BR> if (nFirst < 0)
<BR> nFirst = 0;
<BR> if (nCount < 0)
<BR> nCount = 0;
<BR>
<BR> if (nFirst + nCount > GetData()->nDataLength)
<BR> nCount = GetData()->nDataLength - nFirst;
<BR> if (nFirst > GetData()->nDataLength)
<BR> nCount = 0;
<BR>
<BR> CString dest;
<BR> AllocCopy(dest, nCount, nFirst, 0);
<BR> return dest;
<BR> }
<P>The function Mid allocate a new object and when using
<P> CString s = "dummy";
<BR> myString = "1" + s.Mid(2,2) + "2";
<P>the compiler will feed in the necessary destructor for the temporary
<BR>object.
<P>How can I reach a functionality like this with my own class???
<P>Kind regards,
<BR>Erich
<BR>
</P>
<A NAME="Responses"><HR></A><P ALIGN=CENTER><BIG><BIG><STRONG>Responses</STRONG></BIG></BIG>
<P><UL><LI><STRONG><A HREF="read.cgi-read=10280.htm" tppabs="http://www.codeguru.com/mfc_bbs/read.cgi?read=10280">Re: CString problem</A></STRONG> : Ivo Jansch -- <EM>4/24/98 12:54a.m.</EM>
<UL>
</UL>
</UL></P>
<A NAME="PostResponse"><HR></A><P ALIGN=CENTER><BIG><BIG><STRONG>Post a New Response</STRONG></BIG></BIG>
<P><FORM METHOD=POST ACTION="http://www.codeguru.com/mfc_bbs/index.cgi?post">
<INPUT TYPE=HIDDEN NAME="followup" VALUE="10278">
<P><CENTER><TABLE><TR>
<TD ALIGN=RIGHT><P><STRONG>Your Name:</STRONG></TD><TD><INPUT TYPE=TEXT NAME="name" SIZE=40></TD></TR><TR>
<TD ALIGN=RIGHT><P><STRONG>E-Mail Address:</STRONG></TD><TD><INPUT TYPE=TEXT NAME="email" SIZE=40></TD></TR><TR>
<TD ALIGN=RIGHT><P><STRONG>Subject:</STRONG></TD><TD><INPUT TYPE=TEXT NAME="subject" SIZE=40 VALUE="Re: CString problem"></TD></TR><TR>
<TD COLSPAN=2 ALIGN=CENTER><P><STRONG>Message:</STRONG><BR><TEXTAREA COLS=80 ROWS=15 NAME="body" WRAP=PHYSICAL>
</TEXTAREA></TD></TR><TR>
<TD COLSPAN=2 ALIGN=CENTER><HR WIDTH=50%><P><SMALL>If you'd like to include a link to another page with your message,<BR>please provide both the URL address and the title of the page:</SMALL></TD></TR><TR>
<TD ALIGN=RIGHT><P><STRONG>Optional Link URL:</STRONG></TD><TD><INPUT TYPE=TEXT NAME="url" SIZE=40 VALUE="http://"></TD></TR><TR>
<TD ALIGN=RIGHT><P><STRONG>Optional Link Title:</STRONG></TD><TD><INPUT TYPE=TEXT NAME="url_title" SIZE=40></TD></TR><TR>
<TD COLSPAN=2 ALIGN=CENTER><HR WIDTH=50%><P><SMALL>If you'd like to include an image (picture) with your message,<BR>please provide the URL address of the image file:</SMALL></TD></TR><TR>
<TD ALIGN=RIGHT><P><STRONG>Optional Image URL:</STRONG></TD><TD><INPUT TYPE=TEXT NAME="imageurl" SIZE=40 VALUE="http://"></TD></TR><TR>
<TD COLSPAN=2 ALIGN=CENTER><HR WIDTH=50%><P><SMALL>If you'd like e-mail notification of responses, please check this box:</SMALL> <INPUT TYPE=CHECKBOX NAME="wantnotice" CHECKED VALUE="yes"></TD></TR><TR>
<TH COLSPAN=2><HR WIDTH=50%><P><INPUT TYPE=SUBMIT NAME="Preview" VALUE="Preview Message"> <INPUT TYPE=SUBMIT NAME="Post" VALUE="Post Message"></TH></TR></TABLE></CENTER></P></FORM>
<HR><P ALIGN=CENTER><SMALL>The MFC Discussion Board is maintained with <STRONG><A HREF="http://awsd.com/scripts/webbbs/">WebBBS 2.24</A></STRONG>.</SMALL></P>
</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -