码迷,mamicode.com
首页 >  
搜索关键字:char    ( 35907个结果
OpenMVG 系列 (2):Image 和 Numeric
OpenMVG 的功能模块由若干核心库组成,本文主要介绍 Image 和 Numeric 两个库 1 Image Image 库包含图像容器 Image<T>、图像IO读写函数 ReadImage() 和 WriteImage()、基本绘图操作 DrawLine()、DrawCircle() 和 D ...
分类:其他好文   时间:2021-07-19 16:30:50    阅读次数:0
C/C++ Hook 键盘记录器
之前写外挂做过指定进程的 Hook,但是没有尝试过全局 Hook,所以今天就来试试。全局 Hook 的用途我第一个就想到了键盘记录器(貌似我也就想到了这个 哈哈),那就写一个吧。 实现代码: #include <windows.h> #include<iostream> #include <stdi ...
分类:编程语言   时间:2021-07-16 17:43:16    阅读次数:0
C语言动态分配内存及回收
用malloc和free;类似与C++的new和delete 代码: #include <iostream> #include <string> using namespace std; int main(int argc, char* argv[]) { void* ptr = (void*)ma ...
分类:编程语言   时间:2021-07-15 18:57:44    阅读次数:0
leetcode-227-基本计算器||
public int calculate(String s) { int len = s.length(); Stack<Integer> s1 = new Stack<>(); // 操作数栈 int num = 0; char preSign = '+'; // 为了方便计算,1+1+1 > + ...
分类:其他好文   时间:2021-07-07 17:55:15    阅读次数:0
垂直外边距的重叠
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .box1{ width: 100px; height: 100px; background-color:red ...
分类:其他好文   时间:2021-07-05 18:59:08    阅读次数:0
IDEA搭建一个SpringBoot项目——十分详细(web+mysql)
本博客记录了IDEA中使用Springboot框架搭建一个web+mysql项目的详细过程,适合springboot初学者学习。 ...
分类:数据库   时间:2021-07-05 18:53:16    阅读次数:0
js中的charAt()与charCodeAt(),fromCharCode(),fromCodePoint()
charAt() 用户获得字符串中指定下标的字符 s='abcdef' console.log(s.charAt(0)) //a 注意:只能读,不能写 s='abcdef' s.charAt(0)='c' console.log(s) 运行结果 现在能想到的修改字符串中某个字符的方式就是将字符串转为 ...
分类:Web程序   时间:2021-07-05 18:12:53    阅读次数:0
数据可视化基础专题(47):NUMPY基础(12)numpy 函数 (一)字符串函数
以下函数用于对 dtype 为 numpy.string_ 或 numpy.unicode_ 的数组执行向量化字符串操作。 它们基于 Python 内置库中的标准字符串函数。 这些函数在字符数组类(numpy.char)中定义。 函数描述 add() 对两个数组的逐个字符串元素进行连接 multip ...
分类:其他好文   时间:2021-07-05 17:49:28    阅读次数:0
10.坑-千万别把局部变量的指针作为函数的返回值
#include <stdio.h> #include <string.h> int * getarr(int * ipt); int main() { int a = 99; char * ch ; int *p = getarr(&a); //gets(ch); printf("%d\n", * ...
分类:其他好文   时间:2021-07-05 16:56:01    阅读次数:0
循环导出所有行和列
import pymysql,xlwt def export_excel(table_name): host,user,passwd,db='192.168.1.152','root','myjcyf','us_sys' coon=pymysql.connect(host=host,user=use ...
分类:其他好文   时间:2021-07-01 17:27:29    阅读次数:0
35907条   上一页 1 2 3 4 ... 3591 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!