对应存在于内存中的名为”myfunc”的TF1,利用什么函数才能取得指针? A、 TF1 *f1 = (TF1 *) gSystem->FindFunction(“myfunc”); B、 TF1 *f1 = (TF1 *) gROOT->GetFunction(“myfunc”); C、 TF1 *f1 = (TF1 *) gROOT->FindFunction(“myfunc”); D、 TF1 *f1 = (TF1 *) gSystem->GetFunction(“myfunc”);