我正在关注这些C# 代码示例。但是我对到处都是伪代码注释有点困惑。
例如:
public void addToHead(Object value)
// pre: value non-null
// post: adds element to head of list
{
SinglyLinkedListElement temp =
new SinglyLinkedListElement(value);
if (tail == null) {
tail = temp;
tail.setNext(tail);
}
else {
temp.setNext(tail.next());
tail.setNext(temp);
}
count++;
}
Pre
这里是什么Post
意思?
我从来没有见过Post
在这里使用过。我知道Post
在 Web 和 HTML 等上下文中是什么意思,但在纯代码中不知道。