示例#1
0
void test_get() {
	LinkQueue<int> q;
	q.add(1);
	q.add(2);
	q.add(3);
	q.add(4);
	assert(1 == q.GetFirst());
	assert(4 ==q.GetLast());
}