用<module>.<task>的方式,module就是包含task的模块名,task就是任务名。例如你的模块名是comp,里面有个任务叫sum(a,b,c);在当前的模块下先例化comp my_comp();使用任务就用my_comp.sum(a,b,c);。