书栈网 · BookStack 本次搜索耗时 0.054 秒,为您找到 163786 个相关结果.
  • Utility Types

    Utility Types Introduction Table of contents Partial<T> Example Readonly<T> Example Object.freeze Record<K,T> Example Pick<T,K> Example Omit<T,K> Example Exclude<T,U>...
  • The QObject

    460 2021-10-08 《Qt6 QML Book》
    The QObject The QObject As described in the introduction, the QObject is what enables mant of Qt’s core functions such as signals and slots. This is implemented through introsp...
  • 更新

    更新 描述 参数 返回值 示例 修改脚本命令 更改脚本命令并添加手动输入 源代码 更新 描述 object script.update(object/array scripts) 此方法允许更新已存在的脚本。 此方法只有_超级管理员_ 用户可以使用。可以在用户角色设置中撤销调用此方法的权限。 更多信息见 User roles ...
  • ImportCpp编译指示

    ImportCpp编译指示 命名空间 枚举Importcpp 过程Importcpp 封装构造函数 封装析构函数 对象的Importcpp ImportCpp编译指示 注意 : c2nim 可以解析C++子集并且知道 importcpp 编译指示模式语言。 没有必要知道这里描述的所有细节。 和 importc pragma for C...
  • itertools

    1156 2018-03-03 《Python 之旅》
    itertools 无限迭代器 count cycle repeat 有限迭代器 chain compress dropwhile groupby ifilter ifilterfalse islice imap tee takewhile izip izip_longest 组合生成器 product permutat...
  • JNI Debugging

    Interpreting hs_err_pid files Stack Mac OS X Linux ASAN Mac (Apple LLVM 7.3.0) Linux (CentOS 7) (GCC 4.8.5) Linux (Ubuntu 16.04) (GCC 5.4.0) C++ Debugger lldb (Mac) gdb (L...
  • Python/C API 参考手册

    Python/C API 参考手册 Python/C API 参考手册 本手册描述了希望编写扩展模块并将 Python 解释器嵌入其应用程序中的 C 和 C++ 程序员可用的 API。同时可以参阅 扩展和嵌入 Python 解释器 ,其中描述了扩展编写的一般原则,但没有详细描述 API 函数。 概述 代码标准 包含文件 有用的宏 对象、类...
  • Calling C and Fortran Code

    Calling C and Fortran Code Creating C-Compatible Julia Function Pointers Mapping C Types to Julia Automatic Type Conversion Type Correspondences Bits Types Struct Type Correspo...
  • class

    class class Because Python is dynamically typed, Python classes and objects may seem odd. In fact, you do not need to define the member variables (attributes) when declaring ...
  • 9.25 拆解Python字节码

    9.25 拆解Python字节码 问题 解决方案 讨论 9.25 拆解Python字节码 问题 你想通过将你的代码反编译成低级的字节码来查看它底层的工作机制。 解决方案 dis 模块可以被用来输出任何Python函数的反编译结果。例如: >>> def countdown ( n ): ... while n > ...