提个问题 有关于Ass1文档的
Opened this issue · 0 comments
Price1999a commented
assignments/Assignment 1.md
中提到copy并不会生成真正的深拷贝
但是就A1A2中的源码 显然确实生成了一个深拷贝
/**
* Creates and returns a copy of this fact.
*/
public SetFact<E> copy() {
return new SetFact<>(this.set);
}