例如定义下面个方法,返回3个值,怎么才能实现,望指教:int foo(int x; int y; int z){
    x = 2*x;
    y = 2*y;
    z = 2*z;
    return x, y, z;
}