码迷,mamicode.com
首页 >  
搜索关键字:build type    ( 66624个结果
计算几何三角形模板(持续更新)
三角形模板 const int N = 1e5 + 50; const ld PI = acos(-1.0); const ld eps=1e-8; int sgn(ld x) { if(fabs(x)<eps)return 0; return x<0?-1:1; } struct Point { ...
分类:其他好文   时间:2021-06-10 17:53:30    阅读次数:0
C#动态调用C++及注意点
场景: WPF界面调用C++动态库,由于库的名称不是固定的,因此没法用DllImport,想到了用windows api中的LoadLibrary,一番折腾后调用成功 关键代码: [DllImport("kernel32.dll")] private extern static IntPtr Loa ...
分类:编程语言   时间:2021-06-10 17:47:35    阅读次数:0
数据类型
数据类型 强类型语言 安全性高,速度慢 要求变量都必须先定义后才能使用 弱类型语言 Java数据类型分为 基本类型 引用类型 八大基本数据类型(primitive type) //整数Itint num = 1;//最常用byte num2 = 20;short num3 = 30;long num ...
分类:其他好文   时间:2021-06-10 17:40:26    阅读次数:0
requests 发送 post请求的三种方式
在http 协议中,post 提交的数据需放在消息主体的,但协议并没有规定必须使用什么编码方式,从而导致了提交方式的不同。服务端根据请求同一种的 Content-Type 字段来获取请求中消息主体是用何种方式进行编码,再对消息主体进行解析。 具体的编码方式有: - application/x-www ...
分类:其他好文   时间:2021-06-10 17:37:22    阅读次数:0
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
实验四——无线局域网数据包捕获与分析
无线局域网数据包捕获与分析 实验要求与目的 熟悉常见的无线测量根据的特点和用途 学习WIndows上的Wireshark数据包捕获与分析 学习linux上的Wireshark和Kismet数据包捕获与分析 ISO五层模型 Frame 125172: 物理层数据帧概况。 Ethernet II, Sr ...
分类:其他好文   时间:2021-06-09 15:25:06    阅读次数:0
Prism中Region的使用
一般用法: 1.在XMAL中ContentControl定义一个ContentRegion, 如 <ContentControl prism:RegionManager.RegionName="ContentRegion" /> 2.在XMAL对应的.cs文件构造函数中discovery publi ...
分类:其他好文   时间:2021-06-08 23:45:49    阅读次数:0
LLVM 获取Value Type
void llvtype(std::string_view k, Value* v) { std::cout << std::format("{}:{}:{}", k, (int)v->getType()->getTypeID(), v->getName().str() ) << "\n"; } . ...
分类:其他好文   时间:2021-06-08 23:38:58    阅读次数:0
使用Okhttp完成向服务器请求的操作
1、首先在AndroidManifest.xml文件中添加internet申请 <uses-permission android:name="android.permission.INTERNET"/> 2、然后在build.gradle文件中添加相应的依赖(添加后点击下载,后台就会自动下载相应的j ...
分类:Web程序   时间:2021-06-08 23:37:55    阅读次数:0
颜色单位
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .box1{ width: 100px; height: 100px; /* * 颜色单位: * 在CSS可以直接 ...
分类:其他好文   时间:2021-06-08 23:31:53    阅读次数:0
66624条   上一页 1 ... 16 17 18 19 20 ... 6663 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!