以下哪个选项描述了递归函数 power 的作用?
int power(int base, int exponent) {
if (exponent == 0) {
return 1;
} else {
return base * power(base, exponent - 1);
}}