由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问个C++ TEMPLATE 的问题
相关主题
也问个template 的问题(C++)模板算是纯FP吗
c++面试问题问个字符串的基本问题
c++ template specialization 参数问个g++的问题
C++ linking 弱问 (one file)问个指针array 的简单问题
C++0xsgi stl 源代码一问
C++ class template specialization question一个partial specialization的问题
C++ 菜鸟问一个关于template 的问题。no partial specialize function templates?
大家讨论一下C++模板吧 (转载)[合集] 又被羞辱了一把... (转载)
相关话题的讨论汇总
话题: template话题: char话题: c++话题: class话题: pop
进入Programming版参与讨论
1 (共1页)
p********7
发帖数: 549
1
template<> class stack
{
public:
int Push(char);
char Pop();
}
第一行template<> 是表示什么这个class is an example of which of following:
a.an empty template declaration
b.a virtual template class
c.template specialization
d.忘记了
j***i
发帖数: 1278
2
C

【在 p********7 的大作中提到】
: template<> class stack
: {
: public:
: int Push(char);
: char Pop();
: }
: 第一行template<> 是表示什么这个class is an example of which of following:
: a.an empty template declaration
: b.a virtual template class
: c.template specialization

r****t
发帖数: 10904
3
基本问题随便拿本书都有的,就不要问了。
p********7
发帖数: 549
4
这个也算基本问题? template我经常用,没看到这么用的啊
我猜的是C,不知道是不是

【在 r****t 的大作中提到】
: 基本问题随便拿本书都有的,就不要问了。
t******m
发帖数: 255
5
C
r****t
发帖数: 10904
6
随便哪本书上讲 template 的都有。c++ 我也用,可是我还不敢说我就会 c++ 一个道
理,只是常用 template 不见得就懂 template,看书还是必要的。

【在 p********7 的大作中提到】
: 这个也算基本问题? template我经常用,没看到这么用的啊
: 我猜的是C,不知道是不是

1 (共1页)
进入Programming版参与讨论
相关主题
[合集] 又被羞辱了一把... (转载)C++0x
Default function template argumentsC++ class template specialization question
C++ template problemC++ 菜鸟问一个关于template 的问题。
一个C++ template的问题大家讨论一下C++模板吧 (转载)
也问个template 的问题(C++)模板算是纯FP吗
c++面试问题问个字符串的基本问题
c++ template specialization 参数问个g++的问题
C++ linking 弱问 (one file)问个指针array 的简单问题
相关话题的讨论汇总
话题: template话题: char话题: c++话题: class话题: pop