20140208完成博客

字符串分割 总结

/home/wangze/wallshell/string_split

 std::string::size_type spos = 0, epos = 0;
    int len = strlen(SYSTEM_UID_SPLIT);
    std::string tmp_uids("");
    while ( (epos = systemuids.find(SYSTEM_UID_SPLIT, spos)) != std::string::npos)
    {
        tmp_uids = systemuids.substr(spos, epos - spos);
        if (tmp_uids.empty())
        {
            continue;
        }
        else
        {
            vec_redis_system_uid_.push_back(atoi(tmp_uids.c_str()));
        }


        spos = epos + len;
    }

http://hi.baidu.com/zjwgod/item/e58dc5499df5c707c0161367

http://zhengweizhong.iteye.com/blog/1038527

http://www.rosoo.net/a/201106/14519.html

http://blog.csdn.net/heyabo/article/details/8958496



do{} while(0)宏总结

http://www.cnblogs.com/lanxuezaipiao/p/3535674.html


cookies和session

http://www.freebuf.com/articles/web/24962.html

你可能感兴趣的:(20140208完成博客)