用法:
//这是裕语言V5里的根对象,也是所有子对象的父对象,裕语言V5 所有代码的源头命名。
iapp
//------- 根对象的 子对象
// 字符管理对象
iapp.zf
// 数据管理对象
iapp.sj
// 视图管理对象
iapp.st
// 文件管理对象
iapp.wj
// 工具管理对象
iapp.gj
// 网络管理对象
iapp.wl
// 系统管理对象
iapp.xt
//前缀 iapp 是根对象的,也可以直接写它的子对象
如:
// 工具对象 里的 输出方法
gj.sc("输出文字")
//------- 根对象的 方法
// 为了更简便的使用常用方法,根对象提供以下方法:
// 输出
iapp.gj.sc(123) 可直接使用 gj.sc(123)