Python论坛  - 讨论区

标题:[python-chinese] 能谈谈D语言吗?我来抛个砖

2007年09月21日 星期五 16:52

junyi sun ccnusjy在gmail.com
星期五 九月 21 16:52:40 HKT 2007

½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º

1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
3.ÕýÔò±í´ïʽ
4.GC
5.UnicodeÖ§³Ö
6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁËmd5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
7.¿çƽ̨

.......

´ÓÔËÐеÄÐÔÄÜÉÏÀ´Ëµ£¬½ö´ÎÓÚ´¿C¡£
ÏÂÃæÊÇתÔØÒ»¸öBenchmark:
http://dlang.group.javaeye.com/group/topic/524

ÎÒ¸Õ¿ªÊ¼¿´£¬¶ÔDµÄÀí½âÒ²ºÜÓÐÏÞ£¬ÏÈÅ׿éש£¬ÏëÌýÌý¸ßÊÖÃǵĿ´·¨¡£
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/4eafd5c3/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 17:11

junyi sun ccnusjy在gmail.com
星期五 九月 21 17:11:22 HKT 2007

¡¶PythonÓëDÓïÑԵIJîÒì¡·
http://www.javaeye.com/topic/43601


On 9/21/07, junyi sun <ccnusjy在gmail.com> wrote:
>
> ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
>
> 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> 3.ÕýÔò±í´ïʽ
> 4.GC
> 5.UnicodeÖ§³Ö
> 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁËmd5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> 7.¿çƽ̨
>
> .......
>
> ´ÓÔËÐеÄÐÔÄÜÉÏÀ´Ëµ£¬½ö´ÎÓÚ´¿C¡£
> ÏÂÃæÊÇתÔØÒ»¸öBenchmark:
> http://dlang.group.javaeye.com/group/topic/524
>
> ÎÒ¸Õ¿ªÊ¼¿´£¬¶ÔDµÄÀí½âÒ²ºÜÓÐÏÞ£¬ÏÈÅ׿éש£¬ÏëÌýÌý¸ßÊÖÃǵĿ´·¨¡£
>
>
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/424de318/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 17:17

junyi sun ccnusjy在gmail.com
星期五 九月 21 17:17:33 HKT 2007

Ò»¸öͳ¼ÆÎÄÕµÄ×Ö¡¢´Ê¡¢ÐеÄD³ÌÐò£¬
×¢Òâint[char[]] dictionary£¬Õâ¾ÍÏ൱ÓëPythonÖеÄ×Öµä½á¹¹¡£


import std.stdio;
import std.stream;

int main (char[][] args)
{
    int w_total;
    int l_total;
    ulong c_total;
    int[char[]] dictionary;

    writefln("   lines   words   bytes file");
    foreach (arg; args[1 .. args.length])
    {
    int w_cnt, l_cnt;
    bool inword;

    auto c_cnt = std.file.getSize(arg);
    if (c_cnt < 10_000_000)
    {
        size_t wstart;
        auto input = cast(char[])std.file.read(arg);

        foreach (j, c; input)
        {
        if (c == '\n')
            ++l_cnt;
        if (c >= '0' && c <= '9')
        {
        }
        else if (c >= 'a' && c <= 'z' ||
             c >= 'A' && c <= 'Z')
        {
            if (!inword)
            {
            wstart = j;
            inword = true;
            ++w_cnt;
            }
        }
        else if (inword)
        {   auto word = input[wstart .. j];

            dictionary[word]++;
            inword = false;
        }
        }
        if (inword)
        {   auto w = input[wstart .. input.length];
        dictionary[w]++;
        }
    }
    else
    {
        auto f = new BufferedFile(arg);
        char[] buf;

        while (!f.eof())
        {   char c;

        f.read(c);
        if (c == '\n')
            ++l_cnt;
        if (c >= '0' && c <= '9')
        {
            if (inword)
            buf ~= c;
        }
        else if (c >= 'a' && c <= 'z' ||
                 c >= 'A' && c <= 'Z')
        {
            if (!inword)
            {
            buf.length = 1;
            buf[0] = c;
            inword = 1;
            ++w_cnt;
            }
            else
            buf ~= c;
        }
        else if (inword)
        {
            if (++dictionary[buf] == 1)
            buf = null;
            inword = 0;
        }
        }
        if (inword)
        {
        dictionary[buf]++;
        }
    }
    writefln("%8s%8s%8s %s\n", l_cnt, w_cnt, c_cnt, arg);
    l_total += l_cnt;
    w_total += w_cnt;
    c_total += c_cnt;
    }

    if (args.length > 2)
    {
    writefln("--------------------------------------\n%8s%8s%8s total",
        l_total, w_total, c_total);
    }

    writefln("--------------------------------------");

    foreach (word1; dictionary.keys.sort)
    {
    writefln("%3s %s", dictionary[word1], word1);
    }
    return 0;
}


On 9/21/07, junyi sun <ccnusjy在gmail.com> wrote:
>
> ¡¶PythonÓëDÓïÑԵIJîÒì¡·
> http://www.javaeye.com/topic/43601
>
>
> On 9/21/07, junyi sun < ccnusjy在gmail.com> wrote:
> >
> > ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> > ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
> >
> > 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> > 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> > 3.ÕýÔò±í´ïʽ
> > 4.GC
> > 5.UnicodeÖ§³Ö
> > 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁËmd5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> > 7.¿çƽ̨
> >
> > .......
> >
> > ´ÓÔËÐеÄÐÔÄÜÉÏÀ´Ëµ£¬½ö´ÎÓÚ´¿C¡£
> > ÏÂÃæÊÇתÔØÒ»¸öBenchmark:
> > http://dlang.group.javaeye.com/group/topic/524
> >
> > ÎÒ¸Õ¿ªÊ¼¿´£¬¶ÔDµÄÀí½âÒ²ºÜÓÐÏÞ£¬ÏÈÅ׿éש£¬ÏëÌýÌý¸ßÊÖÃǵĿ´·¨¡£
> >
> >
> >
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/7abee592/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 17:18

lu_zi lu_zi_2000在163.com
星期五 九月 21 17:18:52 HKT 2007

DÓïÑÔÏÖÔÚ»¹ÊÇÑù×Ó»õ£¬³ý·ÇËûÓÐÒ»¸ö³É¹¦µÄ´óÐÍÉÌÒµÓ¦Óã¬Òª²»¾ÍµÃÏó¡£NetÔçÆÚÒ»Ñù

------¸öÈË¿´·¨£¬Ö»¹©²Î¿¼

 

  _____  

·¢¼þÈË: python-chinese-bounces在lists.python.cn
[mailto:python-chinese-bounces在lists.python.cn] ´ú±í junyi sun
·¢ËÍʱ¼ä: 2007Äê9ÔÂ21ÈÕ 17:11
ÊÕ¼þÈË: python-chinese
Ö÷Ìâ: Re: [python-chinese]ÄÜ̸̸DÓïÑÔÂð£¿ÎÒÀ´Å׸öש

 

¡¶PythonÓëDÓïÑԵIJîÒì¡·
http://www.javaeye.com/topic/43601



On 9/21/07, junyi sun < ccnusjy在gmail.com ccnusjy在gmail.com> >
wrote:

½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º

1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
3.ÕýÔò±í´ïʽ
4.GC
5.UnicodeÖ§³Ö
6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁËmd5/thread/socket/regex/zlibµÈ
±È½ÏʵÓõĶ«¶«
7.¿çƽ̨

....... 

´ÓÔËÐеÄÐÔÄÜÉÏÀ´Ëµ£¬½ö´ÎÓÚ´¿C¡£
ÏÂÃæÊÇתÔØÒ»¸öBenchmark:
http://dlang.group.javaeye.com/group/topic/524 

ÎÒ¸Õ¿ªÊ¼¿´£¬¶ÔDµÄÀí½âÒ²ºÜÓÐÏÞ£¬ÏÈÅ׿éש£¬ÏëÌýÌý¸ßÊÖÃǵĿ´·¨¡£



 

-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/e1a93594/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 17:25

kenneth chia kenneth1982在gmail.com
星期五 九月 21 17:25:24 HKT 2007

À¬»øÓïÑÔ

ÔÚ07-9-21£¬lu_zi <lu_zi_2000在163.com> дµÀ£º
>
>  DÓïÑÔÏÖÔÚ»¹ÊÇÑù×Ó»õ£¬³ý·ÇËûÓÐÒ»¸ö³É¹¦µÄ´óÐÍÉÌÒµÓ¦Óã¬Òª²»¾ÍµÃÏó¡£NetÔçÆÚÒ»Ñù
>
> ------¸öÈË¿´·¨£¬Ö»¹©²Î¿¼
>
>
>  ------------------------------
>
> *·¢¼þÈË:* python-chinese-bounces在lists.python.cn [mailto:
> python-chinese-bounces在lists.python.cn] *´ú±í *junyi sun
> *·¢ËÍʱ¼ä:* 2007Äê9ÔÂ21ÈÕ 17:11
> *ÊÕ¼þÈË:* python-chinese
> *Ö÷Ìâ:* Re: [python-chinese]ÄÜ̸̸DÓïÑÔÂð£¿ÎÒÀ´Å׸öש
>
>
>
> ¡¶PythonÓëDÓïÑԵIJîÒì¡·
> http://www.javaeye.com/topic/43601
>
>  On 9/21/07, *junyi sun* < ccnusjy在gmail.com> wrote:
>
> ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
>
> 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> 3.ÕýÔò±í´ïʽ
> 4.GC
> 5.UnicodeÖ§³Ö
> 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁËmd5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> 7.¿çƽ̨
>
> .......
>
> ´ÓÔËÐеÄÐÔÄÜÉÏÀ´Ëµ£¬½ö´ÎÓÚ´¿C¡£
> ÏÂÃæÊÇתÔØÒ»¸öBenchmark:
> http://dlang.group.javaeye.com/group/topic/524
>
> ÎÒ¸Õ¿ªÊ¼¿´£¬¶ÔDµÄÀí½âÒ²ºÜÓÐÏÞ£¬ÏÈÅ׿éש£¬ÏëÌýÌý¸ßÊÖÃǵĿ´·¨¡£
>
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/670e9e9d/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 17:26

junyi sun ccnusjy在gmail.com
星期五 九月 21 17:26:52 HKT 2007

ÏÖÔÚ»¹Ã»ÓÐkiller application

µ«ÎÒÈÏΪֻÊÇʱ¼äÎÊÌ⣬JavaÔçÆÚÒ²Ò»Ñù¡£

On 9/21/07, lu_zi <lu_zi_2000在163.com> wrote:
>
>  DÓïÑÔÏÖÔÚ»¹ÊÇÑù×Ó»õ£¬³ý·ÇËûÓÐÒ»¸ö³É¹¦µÄ´óÐÍÉÌÒµÓ¦Óã¬Òª²»¾ÍµÃÏó¡£NetÔçÆÚÒ»Ñù
>
> ------¸öÈË¿´·¨£¬Ö»¹©²Î¿¼
>
>
>  ------------------------------
>
> *·¢¼þÈË:* python-chinese-bounces在lists.python.cn [mailto:
> python-chinese-bounces在lists.python.cn] *´ú±í *junyi sun
> *·¢ËÍʱ¼ä:* 2007Äê9ÔÂ21ÈÕ 17:11
> *ÊÕ¼þÈË:* python-chinese
> *Ö÷Ìâ:* Re: [python-chinese]ÄÜ̸̸DÓïÑÔÂð£¿ÎÒÀ´Å׸öש
>
>
>
> ¡¶PythonÓëDÓïÑԵIJîÒì¡·
> http://www.javaeye.com/topic/43601
>
>  On 9/21/07, *junyi sun* < ccnusjy在gmail.com> wrote:
>
> ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
>
> 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> 3.ÕýÔò±í´ïʽ
> 4.GC
> 5.UnicodeÖ§³Ö
> 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁËmd5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> 7.¿çƽ̨
>
> .......
>
> ´ÓÔËÐеÄÐÔÄÜÉÏÀ´Ëµ£¬½ö´ÎÓÚ´¿C¡£
> ÏÂÃæÊÇתÔØÒ»¸öBenchmark:
> http://dlang.group.javaeye.com/group/topic/524
>
> ÎÒ¸Õ¿ªÊ¼¿´£¬¶ÔDµÄÀí½âÒ²ºÜÓÐÏÞ£¬ÏÈÅ׿éש£¬ÏëÌýÌý¸ßÊÖÃǵĿ´·¨¡£
>
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/9653be47/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 17:30

beck917 beck917在gmail.com
星期五 九月 21 17:30:12 HKT 2007

¡­¡­

 

  _____  

·¢¼þÈË: python-chinese-bounces在lists.python.cn
[mailto:python-chinese-bounces在lists.python.cn] ´ú±í kenneth chia
·¢ËÍʱ¼ä: 2007Äê9ÔÂ21ÈÕ 17:25
ÊÕ¼þÈË: python-chinese在lists.python.cn
Ö÷Ìâ: Re: [python-chinese]´ð¸´: ÄÜ̸̸DÓïÑÔÂð£¿ÎÒÀ´Å׸öש

 

À¬»øÓïÑÔ

ÔÚ07-9-21£¬lu_zi <lu_zi_2000在163.com> дµÀ£º 

DÓïÑÔÏÖÔÚ»¹ÊÇÑù×Ó»õ£¬³ý·ÇËûÓÐÒ»¸ö³É¹¦µÄ´óÐÍÉÌÒµÓ¦Óã¬Òª²»¾ÍµÃÏó¡£ NetÔçÆÚÒ»
Ñù 

------¸öÈË¿´·¨£¬Ö»¹©²Î¿¼ 

 

  _____  

·¢¼þÈË: python-chinese-bounces在lists.python.cn
[mailto:python-chinese-bounces在lists.python.cn] ´ú±í junyi sun
·¢ËÍʱ¼ä: 2007Äê9ÔÂ21 ÈÕ 17:11
ÊÕ¼þÈË: python-chinese
Ö÷Ìâ: Re: [python-chinese] ÄÜ̸̸DÓïÑÔÂð£¿ÎÒÀ´Å׸öש

 

¡¶PythonÓëDÓïÑԵIJîÒì¡·
http://www.javaeye.com/topic/43601

On 9/21/07, junyi sun < ccnusjy在gmail.com ccnusjy在gmail.com> >
wrote:

½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º 

1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
3.ÕýÔò±í´ïʽ
4.GC
5.UnicodeÖ§³Ö 
6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁËmd5/thread/socket/regex/zlibµÈ
±È½ÏʵÓõĶ«¶«
7.¿çƽ̨ 

....... 

´ÓÔËÐеÄÐÔÄÜÉÏÀ´Ëµ£¬½ö´ÎÓÚ´¿C¡£
ÏÂÃæÊÇתÔØÒ»¸öBenchmark:
http://dlang.group.javaeye.com/group/topic/524 

ÎÒ¸Õ¿ªÊ¼¿´£¬¶ÔDµÄÀí½âÒ²ºÜÓÐÏÞ£¬ÏÈÅ׿éש£¬ÏëÌýÌý¸ßÊÖÃǵĿ´·¨¡£

 


_______________________________________________
python-chinese
Post: send python-chinese在lists.python.cn
Subscribe: send subscribe to python-chinese-request在lists.python.cn
Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
Detail Info: http://python.cn/mailman/listinfo/python-chinese

 

-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/712a492f/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 17:31

junyi sun ccnusjy在gmail.com
星期五 九月 21 17:31:00 HKT 2007

Rubbish?Why?
Please prove your  point of view

On 9/21/07, kenneth chia <kenneth1982在gmail.com> wrote:
>
> À¬»øÓïÑÔ
>
> ÔÚ07-9-21£¬lu_zi <lu_zi_2000在163.com> дµÀ£º
> >
> >  DÓïÑÔÏÖÔÚ»¹ÊÇÑù×Ó»õ£¬³ý·ÇËûÓÐÒ»¸ö³É¹¦µÄ´óÐÍÉÌÒµÓ¦Óã¬Òª²»¾ÍµÃÏó¡£ NetÔçÆÚÒ»Ñù
> >
> > ------¸öÈË¿´·¨£¬Ö»¹©²Î¿¼
> >
> >
> >  ------------------------------
> >
> > *·¢¼þÈË:* python-chinese-bounces在lists.python.cn [mailto:
> > python-chinese-bounces在lists.python.cn] *´ú±í *junyi sun
> > * ·¢ËÍʱ¼ä:* 2007Äê9ÔÂ21 ÈÕ 17:11
> > *ÊÕ¼þÈË:* python-chinese
> > *Ö÷Ìâ:* Re: [python-chinese] ÄÜ̸̸DÓïÑÔÂð£¿ÎÒÀ´Å׸öש
> >
> >
> >
> > ¡¶PythonÓëDÓïÑԵIJîÒì¡·
> > http://www.javaeye.com/topic/43601
> >
> >  On 9/21/07, *junyi sun* < ccnusjy在gmail.com> wrote:
> >
> > ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> > ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
> >
> > 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> > 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> > 3.ÕýÔò±í´ïʽ
> > 4.GC
> > 5.UnicodeÖ§³Ö
> > 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁËmd5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> > 7.¿çƽ̨
> >
> > .......
> >
> > ´ÓÔËÐеÄÐÔÄÜÉÏÀ´Ëµ£¬½ö´ÎÓÚ´¿C¡£
> > ÏÂÃæÊÇתÔØÒ»¸öBenchmark:
> > http://dlang.group.javaeye.com/group/topic/524
> >
> > ÎÒ¸Õ¿ªÊ¼¿´£¬¶ÔDµÄÀí½âÒ²ºÜÓÐÏÞ£¬ÏÈÅ׿éש£¬ÏëÌýÌý¸ßÊÖÃǵĿ´·¨¡£
> >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/46e73ae8/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 17:52

Bruce Wang number5在gmail.com
星期五 九月 21 17:52:31 HKT 2007

On 9/21/07, junyi sun <ccnusjy在gmail.com> wrote:
>
> 今天看见CSDN上猛推D语言,就去下载了个编译器玩玩儿。
> 发现又几个特点比较吸引我:
>
>
珍爱生命,远离CSDN!

-- 
simple is good
http://brucewang.net
http://twitter.com/number5
skype: number5
-------------- 下一部分 --------------
一个HTML附件被移除...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/ff93abf2/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 18:02

xy dahlin在gmail.com
星期五 九月 21 18:02:19 HKT 2007

何出此言?

On 9/21/07, Bruce Wang <number5在gmail.com> wrote:
>
>
> On 9/21/07, junyi sun <ccnusjy在gmail.com> wrote:
> > 今天看见CSDN上猛推D语言,就去下载了个编译器玩玩儿。
> > 发现又几个特点比较吸引我:
> >
> >
>
> 珍爱生命,远离CSDN!
>
> --
> simple is good
> http://brucewang.net
> http://twitter.com/number5
> skype: number5
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request在lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 18:18

追风逐月 chinesexu在gmail.com
星期五 九月 21 18:18:50 HKT 2007

ͬÒâ,ͬÒâ

On 9/21/07, Bruce Wang <number5在gmail.com> wrote:
>
>
>
> On 9/21/07, junyi sun <ccnusjy在gmail.com> wrote:
> >
> > ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> > ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
> >
> >
> Õä°®ÉúÃü£¬Ô¶ÀëCSDN!
>
> --
> simple is good
> http://brucewang.net
> http://twitter.com/number5
> skype: number5
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>



-- 
python c# and opensource
blog:http://www.chyni.cn
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/56ebd078/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 18:28

kenneth chia kenneth1982在gmail.com
星期五 九月 21 18:28:22 HKT 2007

 CSDN¶¼ÊÇЩ²ËÄñ£¬ÊDz»ÊÇÕâ¸öÒâ˼£¿³ýÈ¥¸ö±ð¸ßÊÖ

ÔÚ07-9-21£¬×··çÖðÔ <chinesexu在gmail.com> дµÀ£º
>
> ͬÒâ,ͬÒâ
>
> On 9/21/07, Bruce Wang <number5在gmail.com> wrote:
> >
> >
> >
> > On 9/21/07, junyi sun <ccnusjy在gmail.com > wrote:
> > >
> > > ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> > > ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
> > >
> > >
> > Õä°®ÉúÃü£¬Ô¶ÀëCSDN!
> >
> > --
> > simple is good
> > http://brucewang.net
> > http://twitter.com/number5
> > skype: number5
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
>
> --
> python c# and opensource
> blog:http://www.chyni.cn
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/3c7cc53e/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 18:57

Alec huanghao.c在gmail.com
星期五 九月 21 18:57:07 HKT 2007

½¨×hÐÖÅ_È¥Œ£éTµÄ D ӑՓ…^ӑՓß@‚€Ô’î}»òÔS¸üßmºÏ¡£

D µÄ³ö¬FÒѽ›ÊǺÎ×ÄêµÄÊÂÇéÁË£¬D ÊÇÒ»·N·âé]µÄÕZÑÔ£¬
ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å£¬¶øÇÒÊÇ¿¿‚€ÈËÒâÔ¸í
×óÓÒÕZÑÔ±¾ÉíµÄ°lÕ¹µÄÒ»·N–|Î÷£¨Ê²Ã´¶¼ÓÉ×÷Õß±¾Èˁí›Q¶¨£©£¬
×¢¶¨¶ÌÆڃȣ¬ÖÁÉَ×ÄêƒÈÊÇÉϲ»ÁËÅ_ÃæµÄ¡£

Ŀǰ߀Óв»ÉÙ BUG£¬ ¶øÇÒDÕZÑÔ×÷Õß±¾Éí×Ô¶¨µÄһЩÕZÑÔҎ·¶Ò²²¢
›]ÓÐÍêÈ«Œ¬F£¬ÓÁíÍæÍæ߀¿ÉÒÔ£¬ ÓÁí×ö®aƷ߀̫Ôç¡£

ÒÔÉÏÊÇÎÒÒ»Äê¶àÇ°Œ¦ D µÄÁ˽⣬ҲÔS¬F½ñ D µÄ°lÕ¹ÓÐЩеÄ׃»¯£¬
µ« D Òª×ßµ½¡°ÄÜÓá±µÄëA¶Î½Kšw߀Ҫ×ßÌ«éLµÄ·¡£

junyi sun дµÀ:
> ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
>
> 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> 3.ÕýÔò±í´ïʽ
> 4.GC
> 5.UnicodeÖ§³Ö
> 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁË
> md5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 19:01

junyi sun ccnusjy在gmail.com
星期五 九月 21 19:01:12 HKT 2007

¶÷£¬"ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å"ÕâÒ»µãËƺõ²»Ì«ºÃ

On 9/21/07, Alec <huanghao.c在gmail.com> wrote:
>
> ½¨×hÐÖÅ_È¥Œ£éTµÄ D ӑՓ…^ӑՓß@‚€Ô’î}»òÔS¸üßmºÏ¡£
>
> D µÄ³ö¬FÒѽ›ÊǺÎ×ÄêµÄÊÂÇéÁË£¬D ÊÇÒ»·N·âé]µÄÕZÑÔ£¬
> ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å£¬¶øÇÒÊÇ¿¿‚€ÈËÒâÔ¸í
> ×óÓÒÕZÑÔ±¾ÉíµÄ°lÕ¹µÄÒ»·N–|Î÷£¨Ê²Ã´¶¼ÓÉ×÷Õß±¾Èˁí›Q¶¨£©£¬
> ×¢¶¨¶ÌÆڃȣ¬ÖÁÉَ×ÄêƒÈÊÇÉϲ»ÁËÅ_ÃæµÄ¡£
>
> Ŀǰ߀Óв»ÉÙ BUG£¬ ¶øÇÒDÕZÑÔ×÷Õß±¾Éí×Ô¶¨µÄһЩÕZÑÔҎ·¶Ò²²¢
> ›]ÓÐÍêÈ«Œ¬F£¬ÓÁíÍæÍæ߀¿ÉÒÔ£¬ ÓÁí×ö®aƷ߀̫Ôç¡£
>
> ÒÔÉÏÊÇÎÒÒ»Äê¶àÇ°Œ¦ D µÄÁ˽⣬ҲÔS¬F½ñ D µÄ°lÕ¹ÓÐЩеÄ׃»¯£¬
> µ« D Òª×ßµ½"ÄÜÓÃ"µÄëA¶Î½Kšw߀Ҫ×ßÌ«éLµÄ·¡£
>
> junyi sun дµÀ:
> > ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> > ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
> >
> > 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> > 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> > 3.ÕýÔò±í´ïʽ
> > 4.GC
> > 5.UnicodeÖ§³Ö
> > 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁË
> > md5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> >
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/c98a67b1/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 21:48

junyi sun ccnusjy在gmail.com
星期五 九月 21 21:48:34 HKT 2007

ÓÖ·¢ÏÖDÓïÑÔµÄÒ»¸öÌص㣬¼È¿ÉÒÔ±àÒëÖ´ÐÐÓÖ¿ÉÒÔ±àÒëºóÔÙÔËÐС£
dmd.exe °Ñ*.d±àÒë³ÉÒ»¸öexe (Windowsƽ̨ÏÂ)
rdmd.exe ¿ÉÒÔÖ±½ÓÔËÐÐÒ»¸ö*.dÎļþ¡£
ÕâÒâζ×Å¿ÉÒÔÏñдpythonÒ»Ñù±ßд±ß¸Ä£¬ÂúÒâºóÔÙ·¢²¼Îªexe¸ø±ðÈËÓÃ


On 9/21/07, junyi sun <ccnusjy在gmail.com> wrote:
>
> ¶÷£¬"ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å"ÕâÒ»µãËƺõ²»Ì«ºÃ
>
> On 9/21/07, Alec <huanghao.c在gmail.com > wrote:
>
> > ½¨×hÐÖÅ_È¥Œ£éTµÄ D ӑՓ…^ӑՓß@‚€Ô’î}»òÔS¸üßmºÏ¡£
> >
> > D µÄ³ö¬FÒѽ›ÊǺÎ×ÄêµÄÊÂÇéÁË£¬D ÊÇÒ»·N·âé]µÄÕZÑÔ£¬
> > ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å£¬¶øÇÒÊÇ¿¿‚€ÈËÒâÔ¸í
> > ×óÓÒÕZÑÔ±¾ÉíµÄ°lÕ¹µÄÒ»·N–|Î÷£¨Ê²Ã´¶¼ÓÉ×÷Õß±¾Èˁí›Q¶¨£©£¬
> > ×¢¶¨¶ÌÆڃȣ¬ÖÁÉَ×ÄêƒÈÊÇÉϲ»ÁËÅ_ÃæµÄ¡£
> >
> > Ŀǰ߀Óв»ÉÙ BUG£¬ ¶øÇÒDÕZÑÔ×÷Õß±¾Éí×Ô¶¨µÄһЩÕZÑÔҎ·¶Ò²²¢
> > ›]ÓÐÍêÈ«Œ¬F£¬ÓÁíÍæÍæ߀¿ÉÒÔ£¬ ÓÁí×ö®aƷ߀̫Ôç¡£
> >
> > ÒÔÉÏÊÇÎÒÒ»Äê¶àÇ°Œ¦ D µÄÁ˽⣬ҲÔS¬F½ñ D µÄ°lÕ¹ÓÐЩеÄ׃»¯£¬
> > µ« D Òª×ßµ½"ÄÜÓÃ"µÄëA¶Î½Kšw߀Ҫ×ßÌ«éLµÄ·¡£
> >
> > junyi sun дµÀ:
> > > ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> > > ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
> > >
> > > 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> > > 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> > > 3.ÕýÔò±í´ïʽ
> > > 4.GC
> > > 5.UnicodeÖ§³Ö
> > > 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁË
> > > md5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> > >
> > >
> > ------------------------------------------------------------------------
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/3a41d49e/attachment-0001.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 22:42

flyaflya flyaflya在gmail.com
星期五 九月 21 22:42:58 HKT 2007

CÓïÑÔÒ²¿ÉÒÔ

On 9/21/07, junyi sun <ccnusjy在gmail.com> wrote:
>
> ÓÖ·¢ÏÖDÓïÑÔµÄÒ»¸öÌص㣬¼È¿ÉÒÔ±àÒëÖ´ÐÐÓÖ¿ÉÒÔ±àÒëºóÔÙÔËÐС£
> dmd.exe °Ñ*.d±àÒë³ÉÒ»¸öexe (Windowsƽ̨ÏÂ)
> rdmd.exe ¿ÉÒÔÖ±½ÓÔËÐÐÒ»¸ö*.dÎļþ¡£
> ÕâÒâζ×Å¿ÉÒÔÏñдpythonÒ»Ñù±ßд±ß¸Ä£¬ÂúÒâºóÔÙ·¢²¼Îªexe¸ø±ðÈËÓÃ
>
>
> On 9/21/07, junyi sun <ccnusjy在gmail.com> wrote:
> >
> > ¶÷£¬ "ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å"ÕâÒ»µãËƺõ²»Ì«ºÃ
> >
> > On 9/21/07, Alec < huanghao.c在gmail.com > wrote:
> >
> > > ½¨×hÐÖÅ_È¥Œ£éTµÄ D ӑՓ…^ӑՓß@‚€Ô’î}»òÔS¸üßmºÏ¡£
> > >
> > > D µÄ³ö¬FÒѽ›ÊǺÎ×ÄêµÄÊÂÇéÁË£¬D ÊÇÒ»·N·âé]µÄÕZÑÔ£¬
> > > ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å£¬¶øÇÒÊÇ¿¿‚€ÈËÒâÔ¸í
> > > ×óÓÒÕZÑÔ±¾ÉíµÄ°lÕ¹µÄÒ»·N–|Î÷£¨Ê²Ã´¶¼ÓÉ×÷Õß±¾Èˁí›Q¶¨£©£¬
> > > ×¢¶¨¶ÌÆڃȣ¬ÖÁÉَ×ÄêƒÈÊÇÉϲ»ÁËÅ_ÃæµÄ¡£
> > >
> > > Ŀǰ߀Óв»ÉÙ BUG£¬ ¶øÇÒDÕZÑÔ×÷Õß±¾Éí×Ô¶¨µÄһЩÕZÑÔҎ·¶Ò²²¢
> > > ›]ÓÐÍêÈ«Œ¬F£¬ÓÁíÍæÍæ߀¿ÉÒÔ£¬ ÓÁí×ö®aƷ߀̫Ôç¡£
> > >
> > > ÒÔÉÏÊÇÎÒÒ»Äê¶àÇ°Œ¦ D µÄÁ˽⣬ҲÔS¬F½ñ D µÄ°lÕ¹ÓÐЩеÄ׃»¯£¬
> > > µ« D Òª×ßµ½"ÄÜÓÃ"µÄëA¶Î½Kšw߀Ҫ×ßÌ«éLµÄ·¡£
> > >
> > > junyi sun дµÀ:
> > > > ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> > > > ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
> > > >
> > > > 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> > > > 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> > > > 3.ÕýÔò±í´ïʽ
> > > > 4.GC
> > > > 5.UnicodeÖ§³Ö
> > > > 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁË
> > > > md5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> > > >
> > > >
> > > ------------------------------------------------------------------------
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese在lists.python.cn
> > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request在lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> >
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>



-- 
http://www.flyaflya.com
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/fa5cdc8f/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 22:45

kenneth chia kenneth1982在gmail.com
星期五 九月 21 22:45:20 HKT 2007

Ôõô»¹ÓÐÈËÁÄÕâ¸ö,ÎÒ×ö¸ö×ܽᷢÑÔ,Õâ¸öÓïÑÔÊǸöÀ¬»ø¡£´ó¼Ò±ðÔÙÌÖÂÛÁË¡£¡£¡£

2007/9/21, junyi sun <ccnusjy在gmail.com>:
>
> ÓÖ·¢ÏÖDÓïÑÔµÄÒ»¸öÌص㣬¼È¿ÉÒÔ±àÒëÖ´ÐÐÓÖ¿ÉÒÔ±àÒëºóÔÙÔËÐС£
> dmd.exe °Ñ*.d±àÒë³ÉÒ»¸öexe (Windowsƽ̨ÏÂ)
> rdmd.exe ¿ÉÒÔÖ±½ÓÔËÐÐÒ»¸ö*.dÎļþ¡£
> ÕâÒâζ×Å¿ÉÒÔÏñдpythonÒ»Ñù±ßд±ß¸Ä£¬ÂúÒâºóÔÙ·¢²¼Îªexe¸ø±ðÈËÓÃ
>
>
> On 9/21/07, junyi sun <ccnusjy在gmail.com> wrote:
> >
> > ¶÷£¬ "ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å"ÕâÒ»µãËƺõ²»Ì«ºÃ
> >
> >  On 9/21/07, Alec < huanghao.c在gmail.com > wrote:
> >
> > > ½¨×hÐÖÅ_È¥Œ£éTµÄ D ӑՓ…^ӑՓß@‚€Ô’î}»òÔS¸üßmºÏ¡£
> > >
> > > D µÄ³ö¬FÒѽ›ÊǺÎ×ÄêµÄÊÂÇéÁË£¬D ÊÇÒ»·N·âé]µÄÕZÑÔ£¬
> > > ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å£¬¶øÇÒÊÇ¿¿‚€ÈËÒâÔ¸í
> > > ×óÓÒÕZÑÔ±¾ÉíµÄ°lÕ¹µÄÒ»·N–|Î÷£¨Ê²Ã´¶¼ÓÉ×÷Õß±¾Èˁí›Q¶¨£©£¬
> > > ×¢¶¨¶ÌÆڃȣ¬ÖÁÉَ×ÄêƒÈÊÇÉϲ»ÁËÅ_ÃæµÄ¡£
> > >
> > > Ŀǰ߀Óв»ÉÙ BUG£¬ ¶øÇÒDÕZÑÔ×÷Õß±¾Éí×Ô¶¨µÄһЩÕZÑÔҎ·¶Ò²²¢
> > > ›]ÓÐÍêÈ«Œ¬F£¬ÓÁíÍæÍæ߀¿ÉÒÔ£¬ ÓÁí×ö®aƷ߀̫Ôç¡£
> > >
> > > ÒÔÉÏÊÇÎÒÒ»Äê¶àÇ°Œ¦ D µÄÁ˽⣬ҲÔS¬F½ñ D µÄ°lÕ¹ÓÐЩеÄ׃»¯£¬
> > > µ« D Òª×ßµ½"ÄÜÓÃ"µÄëA¶Î½Kšw߀Ҫ×ßÌ«éLµÄ·¡£
> > >
> > > junyi sun дµÀ:
> > > > ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> > > > ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
> > > >
> > > > 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> > > > 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> > > > 3.ÕýÔò±í´ïʽ
> > > > 4.GC
> > > > 5.UnicodeÖ§³Ö
> > > > 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁË
> > > > md5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> > > >
> > > >
> > > ------------------------------------------------------------------------
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese在lists.python.cn
> > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request在lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> >
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/91ecc70d/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月21日 星期五 23:33

baozhu freeandnil在gmail.com
星期五 九月 21 23:33:40 HKT 2007

²»¹Ü¶ÔÓÚÄÄÒ»ÖÖÓïÑÔ£¬×÷ΪһÃû¿ª·¢ÈËÔ±À´Ëµ¡£"À¬»ø"Ò»´Î»¹ÊÇÓ¦¸Ã½÷É÷ʹÓõġ£´æÔڵļ´Ê¹ºÏÀíµÄ¡£¸üºÎ¿öÎÒÃDz»ÊÇ°²µÂ¶û˹.º£É­²©¸ñ£¬Ò²²»ÊÇSTANLY
LEAPMEN¡£
HEHE .
¹ØÓÚÓïÑÔµÄÕùÂÛµÄÌû×ÓÊÇ°üÀ¨CSDNÔÚÄÚµÄÂÛ̳×îÄÜÒýÆð¿ÚË®µÄ£¬×îÈÝÒ×ÅÜÌâ

2007/9/21, kenneth chia <kenneth1982在gmail.com>:
>
> Ôõô»¹ÓÐÈËÁÄÕâ¸ö,ÎÒ×ö¸ö×ܽᷢÑÔ,Õâ¸öÓïÑÔÊǸöÀ¬»ø¡£´ó¼Ò±ðÔÙÌÖÂÛÁË¡£¡£¡£
>
> 2007/9/21, junyi sun <ccnusjy在gmail.com>:
> >
> > ÓÖ·¢ÏÖDÓïÑÔµÄÒ»¸öÌص㣬¼È¿ÉÒÔ±àÒëÖ´ÐÐÓÖ¿ÉÒÔ±àÒëºóÔÙÔËÐС£
> > dmd.exe °Ñ*.d±àÒë³ÉÒ»¸öexe (Windowsƽ̨ÏÂ)
> > rdmd.exe ¿ÉÒÔÖ±½ÓÔËÐÐÒ»¸ö*.dÎļþ¡£
> > ÕâÒâζ×Å¿ÉÒÔÏñдpythonÒ»Ñù±ßд±ß¸Ä£¬ÂúÒâºóÔÙ·¢²¼Îªexe¸ø±ðÈËÓÃ
> >
> >
> > On 9/21/07, junyi sun <ccnusjy在gmail.com > wrote:
> > >
> > > ¶÷£¬ "ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å"ÕâÒ»µãËƺõ²»Ì«ºÃ
> > >
> > >  On 9/21/07, Alec < huanghao.c在gmail.com > wrote:
> > >
> > > > ½¨×hÐÖÅ_È¥Œ£éTµÄ D ӑՓ…^ӑՓß@‚€Ô’î}»òÔS¸üßmºÏ¡£
> > > >
> > > > D µÄ³ö¬FÒѽ›ÊǺÎ×ÄêµÄÊÂÇéÁË£¬D ÊÇÒ»·N·âé]µÄÕZÑÔ£¬
> > > > ƒÈºË±¾ÉíÊDz»é_·ÅµÄ£¬Ö»ÊÇÇ°¶Ëé_·Å£¬¶øÇÒÊÇ¿¿‚€ÈËÒâÔ¸í
> > > > ×óÓÒÕZÑÔ±¾ÉíµÄ°lÕ¹µÄÒ»·N–|Î÷£¨Ê²Ã´¶¼ÓÉ×÷Õß±¾Èˁí›Q¶¨£©£¬
> > > > ×¢¶¨¶ÌÆڃȣ¬ÖÁÉَ×ÄêƒÈÊÇÉϲ»ÁËÅ_ÃæµÄ¡£
> > > >
> > > > Ŀǰ߀Óв»ÉÙ BUG£¬ ¶øÇÒDÕZÑÔ×÷Õß±¾Éí×Ô¶¨µÄһЩÕZÑÔҎ·¶Ò²²¢
> > > > ›]ÓÐÍêÈ«Œ¬F£¬ÓÁíÍæÍæ߀¿ÉÒÔ£¬ ÓÁí×ö®aƷ߀̫Ôç¡£
> > > >
> > > > ÒÔÉÏÊÇÎÒÒ»Äê¶àÇ°Œ¦ D µÄÁ˽⣬ҲÔS¬F½ñ D µÄ°lÕ¹ÓÐЩеÄ׃»¯£¬
> > > > µ« D Òª×ßµ½"ÄÜÓÃ"µÄëA¶Î½Kšw߀Ҫ×ßÌ«éLµÄ·¡£
> > > >
> > > > junyi sun дµÀ:
> > > > > ½ñÌì¿´¼ûCSDNÉÏÃÍÍÆDÓïÑÔ£¬¾ÍÈ¥ÏÂÔØÁ˸ö±àÒëÆ÷ÍæÍæ¶ù¡£
> > > > > ·¢ÏÖÓÖ¼¸¸öÌصã±È½ÏÎüÒýÎÒ£º
> > > > >
> > > > > 1.²»ÐèÒªÐéÄâ»ú£¬³ÌÐòÌå»ýС
> > > > > 2.ÏñpythonµÄlistÒ»ÑùÓÅÑŵÄarray
> > > > > 3.ÕýÔò±í´ïʽ
> > > > > 4.GC
> > > > > 5.UnicodeÖ§³Ö
> > > > > 6.¿âËäÈ»²»¼°python,javaµÈÅӴ󣬵«std¿âÖÐÒ²´øÁË
> > > > > md5/thread/socket/regex/zlibµÈ±È½ÏʵÓõĶ«¶«
> > > > >
> > > > >
> > > > ------------------------------------------------------------------------
> > > > >
> > > > > _______________________________________________
> > > > > python-chinese
> > > > > Post: send python-chinese在lists.python.cn
> > > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > >
> > > > > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > >
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese在lists.python.cn
> > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > Unsubscribe: send unsubscribe to
> > > > python-chinese-request在lists.python.cn
> > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > >
> > >
> > >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070921/cc78e209/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月22日 星期六 11:31

Jiahua Huang jhuangjiahua在gmail.com
星期六 九月 22 11:31:27 HKT 2007

C 语言用 TCC 编译器也一样能"解释执行"
http://fabrice.bellard.free.fr/tcc/

至于 array 等东西, C 可以用 glib 之类的做

2007/9/21, junyi sun <ccnusjy at gmail.com>:
> 又发现D语言的一个特点,既可以编译执行又可以编译后再运行。
> dmd.exe 把*.d编译成一个exe (Windows平台下)
> rdmd.exe 可以直接运行一个*.d文件。
> 这意味着可以像写python一样边写边改,满意后再发布为exe给别人用
>
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月23日 星期日 08:41

Neil(木野狐) chenrong2003在gmail.com
星期日 九月 23 08:41:29 HKT 2007

try {

}
catch(Exception e)
{

}

以前听说过,但没关注。现在看了这段代码,很多地方比较现代的感觉,语法上有类似 C# 的地方,比如异常处理,对象创建等,我对他印象不错。


在 07-9-22,Jiahua Huang<jhuangjiahua在gmail.com> 写道:
> C 语言用 TCC 编译器也一样能"解释执行"
> http://fabrice.bellard.free.fr/tcc/
>
> 至于 array 等东西, C 可以用 glib 之类的做
>
> 2007/9/21, junyi sun <ccnusjy在gmail.com>:
> > 又发现D语言的一个特点,既可以编译执行又可以编译后再运行。
> > dmd.exe 把*.d编译成一个exe (Windows平台下)
> > rdmd.exe 可以直接运行一个*.d文件。
> > 这意味着可以像写python一样边写边改,满意后再发布为exe给别人用
> >
> >
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年09月23日 星期日 20:56

jessinio liang jessinio在gmail.com
星期日 九月 23 20:56:31 HKT 2007

Ó﷨ûÓÐʲôºÃµÄ¡£»¹ÊÇpython±È½ÏºÃ¡£
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070923/e1577481/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号