ChinaUnix.net
相关文章推荐:

boost ptree

看完了这篇文章http://www.kingofcoder.com/viewNews.php?type=newsCpp&id=85 之後在我的ubuntu 7.04上编译boost, 有这些问题 1) 找不到boost库的.a文件 2) 头文件好像不整, 那下呀?

by koc2 - C/C++ - 2007-06-29 20:19:47 阅读(1651) 回复(4)

相关讨论
by leoncaocn - Solaris - 2005-06-09 09:44:19 阅读(1123) 回复(1)

大家好,小弟刚接触boost,遇到了不少的麻烦。 下面是我机器上的boost的安装目录:/home/zet/software/boost_1_39_0 系统是:ubuntu 以下是一个很简单的测试代码: [CODE] #include #include <boost/asio.hpp> #include <boost/date_time/posix_time/posix_time.hpp> int main() { boost::asio::io_service io; boost::asio::deadline_timer t(io,boost::posix_time::seconds(5)); t.wait()...

by solu - C/C++ - 2009-07-20 15:32:09 阅读(6053) 回复(12)

学习pgrep,pkill命令 2007-12-29 16:58 名称 pgrep, pkill – 查找或者发信号给进程通过名称和其它属性。 语法 pgrep [-flvx] [-n | -o] [-d delim] [-P ppidlist] [-g pgrplist] [-s sidlist] [-u euidlist] [-U uidlist] [-G gidlist] [-J projidlist] [-t termlist] [-T taskidlist] [-c ctidlist] [-z zoneidlist] [pattern] pkill [-signal] [-fvx] [-n | -o] [-P ppidlist] [-g pgrplist] [-s sidlist] [-u euidlist] [-...

by huaihe0410 - Solaris文档中心 - 2008-12-02 12:14:31 阅读(4425) 回复(1)

参考下。 hp下没ptree,不爽!

by softcar - Shell - 2005-06-11 03:46:31 阅读(892) 回复(2)

这道题,俺不是很懂!哪位大哥帮忙解释一下!呵呵,详细点! 感激涕零 :em16: --------------------------------------------------------------------- Select 2 correct statements to describe the following output. #ptree 2883 161 /usr/bin/inetd –s 2357 in.telnetd 2359 –sh 2363 ksh A). After the user logged in, the user changed to korn shell ** B). There is only one instance of telnet running C).Telne...

by qinli - Solaris - 2004-07-06 12:48:21 阅读(816) 回复(2)

我现在在linux下编译一个用了boost/tokenizer.hpp库的源文件 代码如下: #include #include #include <boost/tokenizer.hpp> int main() { std::string str1 = "I-have-a-dog"; std::cout << str1 << std::endl; boost::char_separator sep("-"); boost::tokenizer<boost::char_separator > tokens(str1, sep); for (tokenizer::iterator tok_iter = tokens.begin(); tok_iter...

by kitty9fish - C/C++ - 2009-08-22 16:48:28 阅读(1456) 回复(1)

boost asio 发送HTTP协议 下载网页. 还没有读取完.但已经超过了设定的时段. 如何终止返回... 谁给此例子.

by ivscript - C/C++ - 2008-10-19 12:14:13 阅读(1449) 回复(0)

想用boost的正则匹配任意二进制文件中的"http.exe"字符串,但regex_search()的第一个参数是字符串,文件中遇到NULL就结束了,请问有没有别的办法? #include #include #include <boost/regex.hpp> #include #include #include using namespace std; using namespace boost; regex expression("http"); int main(int argc, char* argv[]) { // char *databuff="wo \n...

by wellfroggy - Perl - 2008-10-10 14:36:18 阅读(1512) 回复(1)

请问,我现在已经和客户机连上了,怎样获取它的端口?怎样主动对它发数据。 我已经有的对象 tcp::socket socket_; handler_allocator allocator_;

by lokeio - C/C++ - 2007-12-12 23:29:01 阅读(4813) 回复(4)

使用bjam完成编译后只出现了debug目录 没有多线程版本没有发布版本,如果解决? debug太大了 gcc (GCC) 3.3.4 Linux darkstar 2.4.30 #11 SMP Wed Oct 11 16:14:02 CST 2006 i686 unknown unknown GNU/Linux

by stuff990 - C/C++ - 2007-10-22 14:57:04 阅读(1507) 回复(2)