class myFun(Employee obj, String attribute)
{
//return proper attribute value without using conditions like If-Else, ternary or
// conditional operators like && etc.
}
今私が呼び出す場合:
myFun(obj, “name”);
次に、この関数は、パラメータとして渡されたオブジェクト「obj」からEmployeeの名前を返す必要があります。したがって、属性値の名前に基づいて、そのオブジェクトの属性値を返す必要があります。
if条件やswitchステートメントを使用せずにC++でそれを行う方法はありますか?私はPythonでgetattrを使用できることを知っています。