我需要在这个add(null)方法中添加一个方法,但该方法有一个字符串参数,如下所示
private double mymethod(String writing) // This is the method which must replace
// the null value inside the add(null) method
但由于它有一个String参数,因此会出错!我该怎么办才能解决这个问题?
答案 0 :(得分:0)
根据你的想法,我认为功能是双打的集合 - 是吗?
您想要做的是以下内容:
features.add(mymethod("some string"));
如果是这样的话,我不会发现我害怕的问题 - 错误在哪里抛出?
如果 mymethod 返回有效的双,我无法看到还有什么会导致您遇到问题。