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.
我开始为 WEKA 编码,在我的项目中包含 weka.jar。但是现在我需要更改 WEKA 源代码中的一些部分。这意味着我想我必须在我的 Eclipse 环境中将源代码添加为新项目。
我用 WEKA SVN 做到了这一点,它作为新项目出现了。但现在我不知道如何处理它。如何将 WEKA.jar 替换为源代码,以便一切正常,但我可以进行一些更改?
非常感谢您!
2081105
我在netbeans中试过,很简单,只需4步
我有两个类,它们都有许多扩展它们的类(用于多个级别)。由于多态性,我只在堆上分配它们。
我想重载<<operator,这样我就可以“流”到另一个。我想A << B简化为A->setNext(B),这个函数将
<<operator
A << B
A->setNext(B)