书栈网 · BookStack 本次搜索耗时 0.034 秒,为您找到 145461 个相关结果.
  • C Standard Library

    C Standard Library C Standard Library Base.Libc.malloc — Function. malloc ( size :: Integer ) -> Ptr { Cvoid } Call malloc from the C standard library. source Bas...
  • Implementing double in C

    Implementing double in C How does it work? What needs to be defined Defining the methods What the generated C will look like Final version DeepCopyOp ViewOp Shape and Shape_...
  • C Standard Library

    C Standard Library C Standard Library Base.Libc.malloc — Function. malloc ( size :: Integer ) -> Ptr { Cvoid } Call malloc from the C standard library. source Bas...
  • C BSON使用

    C BSON使用 建立对象 读取对象 C BSON使用 BSON 是 JSON 的二进制表现形式,通过记录每个对象,元素,以及嵌套元素和数组的类型以及长度,能够高速有效地进行某个元素的查找。因此,在 C 和 C++ 中使用 BSON 官方提供的 BSON 接口进行数据存储。详情请参考 BSON 。 与普通的 JSON 不同,BSON 提供更多的...
  • Python/C API

    Python/C API Python/C API Python/C API 可能是被最广泛使用的方法。它不仅简单,而且可以在C代码中操作你的Python对象。 这种方法需要以特定的方式来编写C代码以供Python去调用它。所有的Python对象都被表示为一种叫做PyObject的结构体,并且Python.h 头文件中提供了各种操作它的函数。例如,...
  • Appendix C: Acknowledgments

    Appendix C: Acknowledgments Appendix C: Acknowledgments I have many people to thank for making this book title and the overall series happen. First, I must thank my wife Chris...
  • c-tip

    c-tip 示例 c-tip 提示 示例 <template> <page title = "c-tip演示" > <view class = "tip-eg" > <c-tip show = "{{showtip1}}" direction = "top" c-bind:close = "...
  • c-toast

    c-toast 属性 示例 c-toast 提示框 属性 属性名 类型 必填 默认值 说明 message String 是 提示框提示的内容 duration Number 否 3000 提示的延迟时间,单位为毫秒 type String 否 “loading” 提示框的类型,有效值:loading/success/warn m...
  • Go调用C

    2436 2018-04-11 《深入解析Go》
    9.3 Go调用C 9.3 Go调用C 从这里开始,将深入挖掘关于运行时库部分对于cgo的支持。还记得前面那个test.go吗?这里将继续以它为例子进行分析。 从Go中调用C的函数test,cgo生成的代码调用是runtime.cgocall(_cgo_Cfunc_test, frame): void · _Cfunc_test ( stru...
  • C代码规范

    5177 2018-03-03 《C 语言进阶》
    0x04 C代码规范 浮点数 其他 0x04 C代码规范 命名 只要提到代码规范,就不得不说的一个问题。 在一些小的演示程序中,也许费尽心思去构思一个 命名 是一件十分傻的行为,但是只要程序上升到你需要严正设计,思考,复查的层次,你就需要好好考虑 命名 这个问题。 函数命名: C语言中,我们可以让下划线或者词汇帮助我们表达函数功能...