ChinaUnix.net
相关文章推荐:

the c standard template library

相关讨论

谁有《The standard C Library》?能发一下吗?

by teclimber - C/C++ - 2011-06-24 08:59:11 阅读(2573) 回复(1)

我有 C++ standard Library: A Tutorial and Reference, The 中文翻译正版书,houjie翻译的 去年买的,不过很新,当时要看,结果最后忙,看了一点,现在觉得留着浪费,所以想卖掉 谁要买联系我 你们可以到陶宝网看看,都是75以上,我是在chinapub上买的,原价 我在北京,北京的朋友可以来我这里取

by hero_ever - C/C++ - 2008-02-20 16:18:34 阅读(1572) 回复(1)

publisher:prentice hall ISBN:0-13-131508-9 author:P. J. Plauger publish time:1991 找了好久也未见到 谢谢

by wykr3879 - C/C++ - 2005-02-28 13:58:44 阅读(847) 回复(0)

First time i find out this it took a while. But actually there is no need any Additional code except QT itself, unless you want gain more performance then QT standard library gives. So if you want to parse JSON object first you have to include QT script engine.

 
#include <QScriptEngine>
 

Let sa...

by landuochong - Web开发 - 2011-12-20 09:48:51 阅读(965) 回复(0)

为什么是“standard C Library”? 我觉得写“System Call”更加合适。 [quote]CHMOD(2) FreeBSD System Calls Manual CHMOD(2) NAME chmod, fchmod, lchmod, fchmodat — change mode of file LIBRARY standard C Library (libc, -lc)[/quote] [quote]PRINTF(3) FreeBSD Library Functions Manual PRINTF(3) NAME printf, fprintf, sprintf, s...

by fender0107401 - C/C++ - 2010-07-22 16:42:26 阅读(3770) 回复(13)

用模板元编程实现的 "字符串" "函数" 库。 支持的 "函数" 举例: u_strlen: 计算长度 u_strcat: 合并两个字符串 u_substr: 取得子串 u_get_char_at: 取得特定位置的字符 u_strchr: 查找字符在串中最先出现的位置 u_strrchr: 查找字符在串中最后出现的位置 u_strstr: 查找子串在串中最先出现的位置 u_strrstr: 查找子串在串中最后出现的位置 字符串模板基于一个type array结构,所有运算都可以在编译时完成。 起初的用途是在另一个...

by 飞灰橙 - C/C++ - 2007-04-17 14:45:58 阅读(3782) 回复(18)

p79的问题, #if (-1 + 0x0) >> 1 > 0x7fff 不知是如何确定大于16位的,我用VC测试#if (-1 + 0x0) >> 1 > 0x7fff 结果为假. The presence of is also designed to discourage an old programming trick that is extremely nonportable. Some programs attempted to test the properties of the execution environment by writing #if directives: #if (-1 + 0x0) >> 1 > 0x7fff /* must have ints greater than 16 bi...

by baozhaomail - C/C++ - 2012-10-02 09:04:15 阅读(1380) 回复(7)

Ubuntu8.10下 安装一个软件时出现了这样的错误信息: configure: error: standard C math library -lm not found 怎么解决? 为什么说找不到standard C math library,而我的/usr/include下确实存在math.h呀? 谢谢!

by ren03 - C/C++ - 2009-01-11 17:34:56 阅读(2443) 回复(4)

程序在编译的时候出现这个错误 无法使用 const char* 来初始化 char*. 检测到 1 错误. 用man strstr 查看了一下 standard C Library Functions #include char *strstr(const char *s1, const char *s2); ISO C++ #include const char *strstr(const char *s1, const char *s2); 如何区分standard C Library Functions 和ISO C++? 我在程序里如何指定使用标准C还是ISO C++? 用以前的编译器没有出现这...

by larace - C/C++ - 2008-08-27 19:21:20 阅读(1835) 回复(6)