stack.cpp
来自「TC-ucos-philos-详细注释.rar 用TC编译ucos并在图像」· C++ 代码 · 共 38 行
CPP
38 行
/*------------------------------------------------------------------------*/
/* */
/* STACK.CPP */
/* */
/* Copyright Borland International 1991 */
/* All Rights Reserved */
/* */
/*------------------------------------------------------------------------*/
#if !defined( __STACK_H )
#include <Stack.h>
#endif // __STACK_H
#ifndef __IOSTREAM_H
#include <iostream.h>
#endif
void Stack::push( Object& toPush )
{
theStack.add( toPush );
itemsInContainer++;
}
Object& Stack::pop()
{
Object& temp = theStack.peekHead();
theStack.detach( temp );
if( temp != NOOBJECT )
itemsInContainer--;
return temp;
}
ContainerIterator& Stack::initIterator() const
{
return *( (ContainerIterator *)new ListIterator( this->theStack ) );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?