python 3.4函数定义中的语法错误

时间:2016-09-25 10:28:57

标签: python syntax-error python-3.4

我在pygame中使用python 3.4,但由于函数定义中的第二个括号,我得到语法错误 我该如何解决这个问题?

class Main {
    private static class SomeX {}

    private static class SomeY extends SomeX {}

    void doSomethingWithX(SomeX someX) {
        Collection<? extends SomeX> colectionOfX = new ArrayList<SomeY>();
        colectionOfX.add(someX);
    }
}

1 个答案:

答案 0 :(得分:1)

如果您的函数以2个元组传递,您应该从元组中提取单个值,如下所示:

MainActivity