码迷,mamicode.com
首页 >  
搜索关键字:void    ( 62627个结果
c++ 可变参数的打包到tuple,使用tuple传递参数
直接上代码 void Add(int a, double b, short c, const char * f) { std::cout << f << a << ", " << b << ", " << c << ";\n"; } void *p = nullptr; template <type ...
分类:编程语言   时间:2021-06-04 19:35:50    阅读次数:0
汉诺塔问题——对于递归过程的解释
我们只看看最基础的汉诺塔问题吧,左神的进阶问题就算了。。。:smiley: 很多人都将汉诺塔是什么,解题流程,然后一个代码就结束。 可是我对汉诺塔递归过程总是很迷惑,感觉很抽象,以下是我的理解。 比如汉诺塔的打印: public void hanoi(int n) { if (n > 0) { fu ...
分类:其他好文   时间:2021-06-04 19:29:33    阅读次数:0
memset
1、头文件<string.h> 2、函数原型void *memset(void *str, int c, size_t n) 3、功能:复制字符 c(一个无符号字符)到参数 str 所指向的字符串的前 n 个字符 链接:C 库函数 – memset() | 菜鸟教程 (runoob.com) ...
分类:其他好文   时间:2021-06-04 19:26:42    阅读次数:0
Hello,World
HelloWorld 随便新建一个文件夹,存放代码 新建一个java文件 。 文件后缀名为.java 。Hello.java 。【注意】系统可能没有显示文件后缀名,我们需要手动 编写代码 public class Hello{ public static void main (String[] ar ...
分类:其他好文   时间:2021-06-04 19:12:47    阅读次数:0
第一个代码
Hello World 随便建一个文件夹,存放代码 新建一个java文件 文件后缀名.java Hello 【注意点】系统没有显示文件后缀名,需要手动打开 编写代码 public class Hello{ public static void main(String[] args){ System. ...
分类:其他好文   时间:2021-06-04 18:59:52    阅读次数:0
C语言自学教程--郝斌--C语言概述
C语言自学教程--郝斌--C语言概述 为什么需要A 什么是A 怎么用A 注意的问题 A应用的领域 A是否重要 时代 勤奋 出身 机遇 天赋 C语言概述 1.为什么学C语言 # include <stdio.h> int main(void) { printf("欢迎大家学习C语言!\n"); ret ...
分类:编程语言   时间:2021-06-04 18:52:39    阅读次数:0
Date与LocalDateTime互转
public class test{ public static void main(String[] arg){ //Date转为LocalDateTime DateTimeFormatter sdf1 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm ...
分类:其他好文   时间:2021-06-04 18:44:19    阅读次数:0
OpenCV实现素描效果
一、概述 实现素描效果的步骤: 1.将输入图像转换为灰度图像 2.使用滤波(中值滤波、高斯滤波)去除图像噪声 3.使用拉普拉斯算子进行边缘描述 4.使用二值分割去除无用噪声 5.输出图像并展示 二、源码示例 /** * 素描 * @param inputImagePath */ void showS ...
分类:其他好文   时间:2021-06-03 18:12:26    阅读次数:0
Java已知图片路径下载图片到本地
public static void main(String[] args) { FileOutputStream fos = null; BufferedInputStream bis = null; HttpURLConnection httpUrl = null; int size = 0; ...
分类:编程语言   时间:2021-06-03 18:04:25    阅读次数:0
使用Lambda转换集合数据至新集合
测试 public static void main(String[] args) { // 将 pojoList 转换至 dtoList 中 List<Student01> dtoList = new ArrayList<>(); List<Student01> pojoList = new Ar ...
分类:其他好文   时间:2021-06-03 18:00:12    阅读次数:0
62627条   上一页 1 ... 18 19 20 21 22 ... 6263 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!