码迷,mamicode.com
首页 >  
搜索关键字:uint srcrowpitch    ( 791个结果
golang之反射
依赖的包为reflect。 Kind():返回最基础的类型。 type Kind uint const ( Invalid Kind = iota Bool Int Int8 Int16 Int32 Int64 Uint Uint8 Uint16 Uint32 Uint64 Uintptr Floa ...
分类:其他好文   时间:2021-06-09 15:36:10    阅读次数:0
Socket-异步封装客户端与服务端类
客户端: class SocketClient { private byte[] byteRcvbuf; public Socket Client { get; set; } public string SocketIP { get; set; } public uint SocketPort { ...
分类:其他好文   时间:2021-04-24 11:54:07    阅读次数:0
DAPP开发求助,Remix部署合约遇到了一些问题
通过remix部署合约出现了一些问题。 编码如下: pragma solidity^0.4.0;contract FaucetTest{ function withdraw(uint withdraw_amount) public { require(withdraw_amount <= 10000 ...
分类:移动开发   时间:2021-03-29 11:57:33    阅读次数:0
基于单片机数码管秒表控制系统设计
1485下载地址 https://docs.qq.com/doc/DWEpnR2pOWU91b3p4?pub=1&dver=2.1.0 #include <reg51.h> #include <intrins.h> #define uchar unsigned char #define uint u ...
分类:其他好文   时间:2021-03-17 14:10:52    阅读次数:0
Nginx main()源码分析
1 int ngx_cdecl 2 main(int argc, char *const *argv) 3 { 4 ngx_buf_t *b; 5 ngx_log_t *log; 6 ngx_uint_t i; 7 ngx_cycle_t *cycle, init_cycle; 8 ngx_conf ...
分类:其他好文   时间:2021-03-09 13:10:05    阅读次数:0
基于单片机30mv和300v量程的电压表仿真设计
百度网盘下载地址(964):点击下载 ? #include <reg52.h> #define uchar unsigned char #define uint unsigned int #include <intrins.h> /* 数码管段选定义 0 1 2 3 4 5 6 7 8 9 */ u ...
分类:其他好文   时间:2021-02-23 13:58:44    阅读次数:0
Keil C51学习 8 A/D模数转换 TLC1549
测量电压,四位数码管显示 #include <reg52.h> #include <absacc.h> #define uint unsigned int #define SEG1 XBYTE[0xffec] #define SEG2 XBYTE[0xffed] #define SEG3 XBYTE ...
分类:其他好文   时间:2021-02-02 11:13:56    阅读次数:0
Keil C51学习 7 串口控制
串口流水灯 发送HEX 01 可以控制第一盏灯点亮,再次发送可以控制熄灭 #include<reg52.h> #define uchar unsigned char #define uint unsigned int uchar i; sbit D0=P1^0; sbit D1=P1^1; sbit ...
分类:其他好文   时间:2021-02-02 10:47:55    阅读次数:0
Golang的spf13/pflag入门示例
pflag 包的主要特点 支持更加精细的参数类型: uint、uint64、uint8、uint16、int32等类型。 支持更多参数类型:ip、ip mask、ip net、count、以及所有类型的 slice 类型。 兼容标准 flag 库的 Flag 和 FlagSet:pflag 更像是对 ...
分类:其他好文   时间:2020-12-28 11:46:35    阅读次数:0
677【毕设课设】基于单片机多路11路AD模拟量采集系统
【资源下载】下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl ? #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int / ...
分类:其他好文   时间:2020-12-09 12:08:37    阅读次数:5
791条   1 2 3 4 ... 80 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!