面试题答案一键面试fn process_numbers<F>(func: F, num1: i32, num2: i32) -> i32 where F: Fn(i32, i32) -> i32, { func(num1, num2) }