Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对课堂比较陌生,我对这个例子有一些问题要问。我想做的是使用堆栈来实现中缀算术表达式。我该如何开始?它是一个空指针吗?或者它是否特别返回任何东西?
void push (void*)是一种接收指向 void 作为参数的指针的方法。指向 void 的指针意味着您可以发送任何数据类型的地址作为参数。但请注意,对数据的任何更改都会在堆栈内部和堆栈外部受到影响(因为您传递的是指针而不是数据的副本)
void push (void*)