爸爸们,救救孩子吧,面试题内心已经崩溃~

adventurer · · 1428 次点击
``` package fuck; class main { public static void main(String[] args) { Sum sum = new Sum(); sum.Sum(2, 3).Sum(2).Sum(2, 3); } } class Sum { public int total; public Sum Sum(int... x) { // Sum x = new Sum(x); for (int v : x) { this.total += v; } System.out.println(this.total); return this; } } ``` 贴个java版本吧,味道好像不太一样
#16
更多评论
已经坐路边抽了半包烟了,惆怅,觉得自己什么都不会了
#1
你确定没记错题?你说两种调用方式,却给出了 3 种~
#2