ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: "Aleksandr Olar" <aolar@km.aval.ua>
To: community@altlinux.ru
Subject: Re: [JT] Re: [Comm] Re: С программисты помогите пожалуйста.
Date: Tue, 01 Mar 2005 13:08:08 +0200
Message-ID: <42244D18.8070504@km.aval.ua> (raw)
In-Reply-To: <200503011247.44192.ngrechukh@ua.fm>

Nick S. Grechukh пишет:

>On Monday 28 February 2005 19:59, Alexey Rusakov wrote:
>  
>
>>On 28.02.2005 20:25, Nick S. Grechukh wrote:
>>    
>>
>>>On Monday 28 February 2005 18:49, Alexey Morsov wrote:
>>>      
>>>
>>>>Которая по сути просто скрывает от вас все то, что на Си вам пришлось бы
>>>>писать самому :) Нет строк в C++ :)
>>>>        
>>>>
>>>ого. а это что?
>>>string sss;
>>>sss="test string1";
>>>string s2="test string2";
>>>// чем не строки? без всяких strcat и memcpy
>>>s2=s2+sss;
>>>printf("%s\n",s2.c_str());
>>>      
>>>
>>Так...
>>Ну короче, поскольку здесь не comp.lang.c++, даю ссылку:
>>http://russian.joelonsoftware.com/Articles/LeakyAbstractions.html
>>    
>>
>я Джоэла читаю. однако уже замучался на каждый чих писать 
>char *newstr; 
>size_t len1=strlen(str1);
>size_t len2=strlen(str2);
>newstr=malloc(len1+len2);
>// а вдруг соседний thread уже изменил str1/str2, вот и снесло крышу strcat
>strncat(newstr,str1,len1);
>strncat(newstr,str2,len2);
>//и еще и не забыть free все что мы на malloc'или. ужасть.
>strings внутри себя делает то же самое, по крайней мере ненамного хуже C. все 
>как обычно - либо красиво, либо оптимизировано. 
>  
>
>------------------------------------------------------------------------
>
>_______________________________________________
>Community mailing list
>Community@altlinux.ru
>https://lists.altlinux.ru/mailman/listinfo/community
>
то же самое только со string:

#include <string>
#include <iostream>
use namespace std;
....
string newstr(str1);
newstr += str2;
// еще вывод
cout << newstr << '\n';
....
free не надо деструктор все сделает сам



  reply	other threads:[~2005-03-01 11:08 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-02-28  9:31 [Comm] " Oleg Pan
2005-02-28  9:42 ` Alexey Morsov
2005-02-28 11:35   ` [Comm] " Arioch
2005-02-28 11:37   ` Arioch
2005-02-28 16:49     ` Alexey Morsov
2005-02-28 17:25       ` Nick S. Grechukh
2005-02-28 17:59         ` Alexey Rusakov
2005-02-28 18:02           ` [Comm][JT] " Denis Klykvin
2005-03-01 10:47           ` [JT] Re: [Comm] " Nick S. Grechukh
2005-03-01 11:08             ` Aleksandr Olar [this message]
2005-03-01  8:17         ` Alexey Morsov
2005-03-01  8:56           ` Alexey Rusakov
2005-03-01 10:26             ` Alexey Morsov
2005-02-28 18:54       ` Arioch
2005-02-28  9:54 ` [Comm] " Vitaly Lipatov
2005-02-28 10:05 ` Yura Kalinichenko
2005-02-28 11:32   ` Re[2]: " Oleg Pan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=42244D18.8070504@km.aval.ua \
    --to=aolar@km.aval.ua \
    --cc=community@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git