c_cpp c ++中的模板练习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp c ++中的模板练习相关的知识,希望对你有一定的参考价值。

#include <iostream>

//stack implementation using template generics and linked nodes

template <class T>
class stack {
	public:
	T item;
	stack(T elem){
		item = elem;
	}
	//returns the top level item
	T peek() const {
		return item;
	}
	private:
	stack * next;
};

int main() {
    std::cout << "Hello World!\n";
}

以上是关于c_cpp c ++中的模板练习的主要内容,如果未能解决你的问题,请参考以下文章

模板是如何实例化的?

[C/C++]详解C++中的模板

[C/C++]详解C++中的模板

实验8 标准模板库STL

c_cpp C / C ++中的链表示例

c_cpp C中的功能