Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クラスを操作すると、関数へのポインターを使用してこのエラーが発生しました。私の関数「ope」関数はどうすれば解決できますか
evaluator::function(){ double (*ope) (double,double) ; ope=&evaluator::add; } double evaluator::add( double a, double b){ return (a+b); }