**在对象中生成 Method 数组:**
- 把该对象 base 中的所有 FuncObj 与 当前 this 作为参数生成 Method,并且形成 MethodMap 写入当前对象。
- 默认不生成Meta方法。
- 主要用于函数式编程中传递方法。
```autohotkey
loadMethod(this)
```
### 参数 Parameters:
- this - 方法的this参数
### 返回 Returns:
null
### 抛出异常 Throws:
- null
### 示例 Example
```autohotkey
class Test{
mes := "Test!"
__New(){
loadMethod(this)
return this
}
A(){
LogPrintln(this.mes,"this.mes >>>")
}
}
theObj := new Test()
theObj.Method.A()
theAct:=theObj.Method.A
%theAct%()
```
```autohotkey
"InitFunc运行中" >>>InitFunc运行中
this.mes >>>Test!
this.mes >>>Test!
```
- 指南 (README)
- 常见问题 (FAQ)
- 更新历史(CHANGELOG)
- 贡献指南 (CONTRIBUTING)
- 开源协议 (LICENCE)
- 鸣谢 (ACKNOWLEDGEMENT)
- 文档模板 (TEMPLATE)
- 新手指南(BEGINNER_GUIDE)
- 语法高亮(HIGHLIGHTING)
- Class
- _Container
- _EX
- _List
- _Map
- _Win
- _Wins
- BeanEnum
- HotString
- HotStringMaps
- InvisibleCharacter
- JSON
- JsonFile
- Method
- ObservableMap
- ObservableObj
- WinEvent
- Timer
- MesToast
- APPLocker
- AutoClassify
- Everything
- Function
- Ini
- AutoInputBox
- ParaChecker
- PathObj
- RunningSpeedTest
- Script
- Switcher
- Stack
- TimeChecker
- Type
- UMSS
- Function
- assert()
- Analyze()
- AnalyzeClassName()
- AutoBind()
- bulkMoveFile()
- ExcelToList()
- getClass()
- getCurrentTime()
- getFunc()
- Instanof()
- InstanceCheck()
- loadMethod()
- LogPrintln()
- rawCall()
- RandomStr()
- showObj()
- Type()
- throwWithSt()
- UseCMD()
- ObjDump()
- Test
- ObjLoad()
- StringMethod
- TypeClass
- MapFactory()