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.
FunctionJava 的 List 类有一个可以追加的 snoc 方法: snoc
说明如下:
将给定元素附加(snoc)到此列表以生成新列表。
这里的“snoc”是什么意思?我试图在维基百科中查找它并作为首字母缩略词没有成功。这是否意味着它正在做一些特殊的追加?
编辑:感谢大家指出我的缺点
它的“缺点”反转为 cons prepends,snoc appends。
我认为 cons 源自 Lisp。
snoc 这个名字倒过来是 cons 。
希望这可以帮助。
http://jlambda.com/~iop/GraphicsActor2D/doc/g2d/jlambda/List.html