Redian新闻
>
一个 C++ STL base type 的问题
avatar
一个 C++ STL base type 的问题# Programming - 葵花宝典
H*n
1
目前人在纽约 统计专业 有cs基础
OPT第一年 90天失业期还有一个月 求一靠谱挂靠
拜谢!!!
avatar
p*o
2
☆─────────────────────────────────────☆
SK11 (SK11) 于 (Mon Jun 15 02:31:41 2009, 美东) 提到:
☆─────────────────────────────────────☆
anoia (暂时解决温饱,坚决不进器材) 于 (Mon Jun 15 02:32:58 2009, 美东) 提到:
道具、背景搭配起来有点儿线条错乱
好久没来了你
调子挺喜欢

☆─────────────────────────────────────☆
newkids (t D 0 0 y . Y t) 于 (Mon Jun 15 02:34:32 2009, 美东) 提到:
挺喜欢这个颜色
怎么调的?
☆─────────────────────────────────────☆
SK11 (SK11) 于 (Mon Jun 15 02:35:06 2009, 美东) 提到:
版版这么晚还守夜,辛苦。
☆─────────────────────────────────────☆
avatar
R*M
3
一直以来都是用windows,最近买了iphone以后发现mac的操作系统果然还是有过人之处,
想试用一下mac os x。
在pc上装过mac os的朋友说一下用户体验好吗?
好的话就准备拿手头的t400s实验一下。但如果折腾半天还是不好用,还不如直接上新
的macbook算了
avatar
s*s
4
C++ STL list 的实现:
为什么先写一个base类型,然后再从base继承出主要类型,比如list?
这个base似乎在任何别的地方都用不到。
这样做,从编程方法上有什么优越之处?谢谢!
avatar
H*n
5
自己顶一下
avatar
a*y
6
直接上吧
上了不喜欢卖掉也就亏100多刀

处,

【在 R*M 的大作中提到】
: 一直以来都是用windows,最近买了iphone以后发现mac的操作系统果然还是有过人之处,
: 想试用一下mac os x。
: 在pc上装过mac os的朋友说一下用户体验好吗?
: 好的话就准备拿手头的t400s实验一下。但如果折腾半天还是不好用,还不如直接上新
: 的macbook算了

avatar
t*t
7
maybe, in case you want to have any specialized implementation?

【在 s******s 的大作中提到】
: C++ STL list 的实现:
: 为什么先写一个base类型,然后再从base继承出主要类型,比如list?
: 这个base似乎在任何别的地方都用不到。
: 这样做,从编程方法上有什么优越之处?谢谢!

avatar
c*0
8
我帮你弄吧 可以给我发邮件[email protected]/* */
avatar
R*M
9
啊?但是还是想尝试一下先用pc玩下,毕竟t400s多了一个系统还是不错的

【在 a***y 的大作中提到】
: 直接上吧
: 上了不喜欢卖掉也就亏100多刀
:
: 处,

avatar
s*s
10

The header file noted that the purpose was to "split into" a
non-template base and a template type node. However, I fail
to see the point of doing this, since the STL list is only used and
known as a template class.

【在 t****t 的大作中提到】
: maybe, in case you want to have any specialized implementation?
avatar
a9
12
很多设备没驱动。

【在 R*M 的大作中提到】
: 啊?但是还是想尝试一下先用pc玩下,毕竟t400s多了一个系统还是不错的
avatar
t*t
13
if the base class is non-template, then it makes perfect sense --- the non-
template part can be pre-compiled. i thought you are referring to libstdc++
(in which case the base class is also a template).

【在 s******s 的大作中提到】
:
: The header file noted that the purpose was to "split into" a
: non-template base and a template type node. However, I fail
: to see the point of doing this, since the STL list is only used and
: known as a template class.

avatar
H*n
14
目前人在纽约 统计专业 有cs基础
OPT第一年 90天失业期还有一个月 求一靠谱挂靠
拜谢!!!
avatar
wy
15
u can install windows on macbook as well a

【在 R*M 的大作中提到】
: 啊?但是还是想尝试一下先用pc玩下,毕竟t400s多了一个系统还是不错的
avatar
X*r
16
For each type as the parameter of this node class, the compiler
needs to generate a separate piece code for each instantiated class.
By moving common logic from the template node class to a
non-template base class, the corresponding code no longer get
duplicated, resulting smaller binaries.

【在 s******s 的大作中提到】
:
: The header file noted that the purpose was to "split into" a
: non-template base and a template type node. However, I fail
: to see the point of doing this, since the STL list is only used and
: known as a template class.

avatar
c*0
17
我帮你弄吧 可以给我发邮件[email protected]/* */
avatar
f*Q
18
thinkpad系列据说都没问题。
avatar
s*s
19

Thank you.

【在 X****r 的大作中提到】
: For each type as the parameter of this node class, the compiler
: needs to generate a separate piece code for each instantiated class.
: By moving common logic from the template node class to a
: non-template base class, the corresponding code no longer get
: duplicated, resulting smaller binaries.

avatar
n*8
20
有需要的,请Email: [email protected]/* */。我们公司可以帮你
avatar
k*g
21
osx86 很好用。如果你有时间折腾的话。
就是sound card, graphic card, mic, network 驱动问题多多。 可能行,可能不行。
我有5年OSX86 经验,从10.4 到 10.6。
avatar
s*s
22

+
Now I am confused. Sorry I don't know C++ well.
I thought STL was part of libstdc++.

【在 t****t 的大作中提到】
: if the base class is non-template, then it makes perfect sense --- the non-
: template part can be pre-compiled. i thought you are referring to libstdc++
: (in which case the base class is also a template).

avatar
a*y
23
有耐力能折腾,强悍



【在 k******g 的大作中提到】
: osx86 很好用。如果你有时间折腾的话。
: 就是sound card, graphic card, mic, network 驱动问题多多。 可能行,可能不行。
: 我有5年OSX86 经验,从10.4 到 10.6。

avatar
t*t
24
libstdc++ is one particular (gcc's) implementation of STL

【在 s******s 的大作中提到】
:
: +
: Now I am confused. Sorry I don't know C++ well.
: I thought STL was part of libstdc++.

avatar
k*g
25
不就是为了final cut, pro tool 几个mac 专业的软件么。自己攒mac 也更强大,更
powerful
avatar
s*s
26

I see, thank you.

【在 t****t 的大作中提到】
: libstdc++ is one particular (gcc's) implementation of STL
avatar
j*c
27
无线网卡我没驱动得了

【在 f*****Q 的大作中提到】
: thinkpad系列据说都没问题。
avatar
R*M
28
驱动问题有多大?常见的thinkpad比如t400s能装上网卡和显卡吗?

【在 k******g 的大作中提到】
: 不就是为了final cut, pro tool 几个mac 专业的软件么。自己攒mac 也更强大,更
: powerful

avatar
q*s
29
能给推荐一些文章看看么?
我的机器是dell studio 540.



【在 k******g 的大作中提到】
: osx86 很好用。如果你有时间折腾的话。
: 就是sound card, graphic card, mic, network 驱动问题多多。 可能行,可能不行。
: 我有5年OSX86 经验,从10.4 到 10.6。

avatar
N*7
30
基本上吧,intel的无线卡都没有驱动,thinkpad上nvidia 140m没有驱动,sleep,
wakeup会是个大问题,没有时间和耐心是玩不了的。不过一旦会玩了,还是挺好玩的。
我现在有dell的D820 running snow leopard, two desktop, one running leopard,
another one running snow leopard, 都很稳定,为了用outlook, 还装了vmware
fusion. 很好玩
avatar
q*s
31
能讲讲如何安装的么?我看了半天,也没有一个想法。是不是像装linux那样的。
多谢!

【在 N******7 的大作中提到】
: 基本上吧,intel的无线卡都没有驱动,thinkpad上nvidia 140m没有驱动,sleep,
: wakeup会是个大问题,没有时间和耐心是玩不了的。不过一旦会玩了,还是挺好玩的。
: 我现在有dell的D820 running snow leopard, two desktop, one running leopard,
: another one running snow leopard, 都很稳定,为了用outlook, 还装了vmware
: fusion. 很好玩

avatar
N*7
32
要象装Linux那么简单,谁还花钱去买overprice的Apple?这要看你的硬件都是什么,
有没有驱动,cpu,chipset,sata,usb,video,audio,等等等等。非常麻烦的。
google一下osx86吧。
avatar
q*s
33
已经看了,好像没有一个系统的,统一的做法,所以不知道如何下手!
多谢!
avatar
p*n
34
根据你问问题的水平, 不太行,还是老老实实买一个macbook吧。
另外,t400s装osx有致命问题,显卡驱动没有。

处,

【在 R*M 的大作中提到】
: 一直以来都是用windows,最近买了iphone以后发现mac的操作系统果然还是有过人之处,
: 想试用一下mac os x。
: 在pc上装过mac os的朋友说一下用户体验好吗?
: 好的话就准备拿手头的t400s实验一下。但如果折腾半天还是不好用,还不如直接上新
: 的macbook算了

avatar
h*3
35
驱动啊驱动

处,

【在 R*M 的大作中提到】
: 一直以来都是用windows,最近买了iphone以后发现mac的操作系统果然还是有过人之处,
: 想试用一下mac os x。
: 在pc上装过mac os的朋友说一下用户体验好吗?
: 好的话就准备拿手头的t400s实验一下。但如果折腾半天还是不好用,还不如直接上新
: 的macbook算了

avatar
I*r
36
没问题,我AMD的CPU照样用。
就是花点时间
avatar
i*e
37
先下载一个VMWARE 版本的体验一下,然后再决定买不买.
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。