def __str__(self):
r = self._ret
n = self._name
a = self._arg
c = ''
c += 'public ' + r + ' ' + n + '(' + a + ') {\n'
if self._madd:
c += indent(self._madd, ' ') + '\n'
if self._cpush:
c += ' ' + self._cpush + '\n'
c += indent(self._new, ' ') + '\n'
c += '}'
if r == 'T':
c = '@SuppressWarnings("unchecked")\n' + c
return c
评论列表
文章目录