书栈网 · BookStack 本次搜索耗时 0.079 秒,为您找到 88226 个相关结果.
  • 1.15 C#类

    1596 2019-07-15 《C# 高级编程》
    C# 类 一、类的定义 二、成员函数和封装 三、C# 中的构造函数 四、C# 中的析构函数 五、C# 类的静态成员 C# 类 当你定义一个类时,你定义了一个数据类型的蓝图。这实际上并没有定义任何的数据,但它定义了类的名称意味着什么,也就是说,类的对象由什么组成及在这个对象上可执行什么操作。对象是类的实例。构成类的方法和变量成为类的成员。 ...
  • 4.5 – Handling Yields in C

    4.5 – Handling Yields in C 4.5 – Handling Yields in C Internally, Lua uses the C longjmp facility to yield a coroutine. Therefore, if a C function foo calls an API function a...
  • 4.4 – Error Handling in C

    4.4 – Error Handling in C 4.4.1 – Status Codes 4.4 – Error Handling in C Internally, Lua uses the C longjmp facility to handle errors. (Lua will use exceptions if you compile...
  • Microsoft C++ on Windows

    Configure VS Code for Microsoft C++ Prerequisites Check your Microsoft Visual C++ installation Create Hello World Add a source code file Add hello world source code Explore In...
  • Implementing the arithmetic Ops in C

    433 2020-04-11 《Theano 1.0 Document》
    Implementing the arithmetic Ops in C How does it work? What needs to be defined Defining the methods Final version Implementing the arithmetic Ops in C Now that we have set...
  • Extending Theano with a C Op

    Extending Theano with a C Op Python C-API Reference counting NumPy C-API NumPy data types NumPy ndarrays Accessing NumPy ndarrays’ data and properties Creating NumPy ndarrays ...
  • 1.1 Standard_C

    1579 2020-05-11 《Simon 的技术笔记》
    StandardC Linux Vi命令 C语言 include是一条预处理命令,用于把某个“.h”文件的内容合并当前“.c”文件中。使用方法如下: include “abc.h”或#include 操作符可以把宏的某个参数变成字符串面值,例如:”abc”。 操作符可以把宏的某个参数代表的标示符和其它内容合并成有一个新的标示符。 else …...
  • CRC32c

    CRC32c CRC32c CRC32c.crc32c — Function. crc32c ( data , crc :: UInt32 = 0x00000000 ) Compute the CRC-32c checksum of the given data , which can be an Array{UInt8} , a co...
  • CRC32c

    CRC32c CRC32c crc32c ( data , crc :: UInt32 = 0x00000000 ) Compute the CRC-32c checksum of the given data , which can be an Array{UInt8} , a contiguous subarray thereof, or...
  • Objective-C Runtime

    Objective-C Runtime Runtime 是什么? SEL 与 IMP 消息传递机制 动态消息解析 参考资料 Objective-C Runtime Runtime 是什么? Runtime 是 Objective-C 区别于 C 语言这样的静态语言的一个非常重要的特性。对于 C 语言,函数的调用会在编译期就已经决定好,在...