用户自定义函数超过一次要怎么办?
我在写一个选择菜单,这个菜单的结构是这样的:主程序.au3
#include <a.AU3>
#include <b.AU3>
#include <c.AU3>
a.au3
#include-once
#include <test.AU3>
b.au3
#include-once
#include <user.AU3>
c.au3
#include-once
#include <test.AU3>
说明:test.AU3这个函数我不想让它在主程序里调用,我只想让它在被选择时才会调用,最好调用完就注销这个函数,我加了#include-once,可是还是说被重复包含,导致调用失败! autoit好像没有函数重载
你要在test.AU3里面加#include-once 有加的,可是还是不好用!
页:
[1]