ChinaUnix.net
相关文章推荐:

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)

为什么是“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)

程序在编译的时候出现这个错误 无法使用 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)

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)

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)

[code]class A { public: int Aa; protected: int Ab; private: int Ac; }; class B : public A { public: int Ba; protected: int Bb; private: int Bc; }; template class C : public B { public: C(); }; template C::C() : A::Ab(2) {} int main() { C p; return 0; } [/code]刚学template 过来请教 上面的代码编译出错 5.cpp: In constructo...

by alexandnpu - C/C++ - 2012-06-29 11:00:50 阅读(1240) 回复(3)

冒泡排序 #include iostream.h> template class T> void bubblesort(T *p, int n) { for(int i=0;in;i++) coutp" "; //output the value before sort coutendl; int flag=1,count=0; for(int i=0;(in-1)&&flag;i++)//attention the condition of loop { count++;//count the number of loop flag=0; for(int j=0;jn-1-i;j++)//attention the condition of loop if(p[j]>p[j+1]) { T temp; temp=p[j]; p[j]=p[j+1]; p[j+...

by jimonitu - Linux文档专区 - 2008-03-05 15:21:29 阅读(652) 回复(0)