r*********r 发帖数: 3195 | 1 在 expression template 的基础上更进一步,
基本上把 ML 里的 pattern matching 机制都实现了. |
d****p 发帖数: 685 | 2 牛阿
我现在还在为选择boost1.34, 1.35 还是1.36烦恼.
还只是简单的shared_ptr
【在 r*********r 的大作中提到】 : 在 expression template 的基础上更进一步, : 基本上把 ML 里的 pattern matching 机制都实现了.
|
d****p 发帖数: 685 | 3 c++这样发展下去不知得多少人去做编译器.
【在 d****p 的大作中提到】 : 牛阿 : 我现在还在为选择boost1.34, 1.35 还是1.36烦恼. : 还只是简单的shared_ptr
|
t****t 发帖数: 6806 | 4 shared_ptr直接用tr1就行了...
【在 d****p 的大作中提到】 : 牛阿 : 我现在还在为选择boost1.34, 1.35 还是1.36烦恼. : 还只是简单的shared_ptr
|
d***q 发帖数: 1119 | 5 template本身就是一种编译器的扩展...... |
d****p 发帖数: 685 | 6 Unfortunately we have to support SunStudio CC which doesn't support tr1...
And we are struggling with messing around boost with various versions of
compilers :-(
【在 t****t 的大作中提到】 : shared_ptr直接用tr1就行了...
|
d****p 发帖数: 685 | 7 ? template是语言内核的一部分啊.
【在 d***q 的大作中提到】 : template本身就是一种编译器的扩展......
|
r*********r 发帖数: 3195 | 8 可以把要用的模块挖出来,这样就不用装整个boost. 反正很多模块就是一些头文件。
【在 d****p 的大作中提到】 : 牛阿 : 我现在还在为选择boost1.34, 1.35 还是1.36烦恼. : 还只是简单的shared_ptr
|
d****p 发帖数: 685 | 9 good idea. I really need a simple tool to grab all depended files given a
header file you need. Is such tool available?
【在 r*********r 的大作中提到】 : 可以把要用的模块挖出来,这样就不用装整个boost. 反正很多模块就是一些头文件。
|
r*********r 发帖数: 3195 | 10 没试过, 我都是编译安装整个 boost.
不过确实太大了, 很多根本用不到. |
l******e 发帖数: 12192 | 11 简单的shared_ptr直接用其他的
【在 d****p 的大作中提到】 : good idea. I really need a simple tool to grab all depended files given a : header file you need. Is such tool available?
|
d****p 发帖数: 685 | 12 Seems boost does support partial install - the bcp tool is exactly for this
purpose.
【在 r*********r 的大作中提到】 : 没试过, 我都是编译安装整个 boost. : 不过确实太大了, 很多根本用不到.
|
r*********r 发帖数: 3195 | 13 nice find. definitely will try it. |