码迷,mamicode.com
首页 >  
搜索关键字:static const    ( 70582个结果
InetAddress类
package kuangs.lesson1;import java.net.InetAddress;import java.net.UnknownHostException;//测试IPpublic class TestInetAddress { public static void main(S ...
分类:Web程序   时间:2021-06-02 19:04:04    阅读次数:0
barcode EAN13 12位计算出最后一位
/** * 计算barcode最后一位 * @param code 12位的barcode * @return */ public static String padBarcode(String code){ if( null == code || code.length() != 12 ){ th ...
分类:其他好文   时间:2021-06-02 18:53:48    阅读次数:0
广度优先遍历多叉树
广度优先遍历多叉树 层序遍历多叉树,判断是否有等于给定值target的结点 给定多叉树: const root = { value: 4, children: [{ value: 2, children: [{ value: 1, children: [] }, { value: 3, childr ...
分类:其他好文   时间:2021-06-02 18:13:29    阅读次数:0
C++ 相关积累
编译器为class A{}生成的函数 1 class A 2 { 3 public: 4 A(); //缺省构造函数 5 A(const A&rhs); //拷贝构造函数 6 ~A(); //析构函数 7 A& operator=(const A&rhs); //赋值运算符 8 A* operato ...
分类:编程语言   时间:2021-06-02 18:11:51    阅读次数:0
dik
#include<bits/stdc++.h> using namespace std; const int N = 200000,Inf=0x7fffff; struct edge{ int u,v,w; edge(int a,int b,int c){ u=a,v=b,w=c; } }; vec ...
分类:其他好文   时间:2021-06-02 17:40:23    阅读次数:0
CompletableFuture 使用详解
1、 runAsync 和 supplyAsync方法 CompletableFuture 提供了四个静态方法来创建一个异步操作。 public static CompletableFuture<Void> runAsync(Runnable runnable) public static Comp ...
分类:其他好文   时间:2021-06-02 17:33:34    阅读次数:0
nodeJs爬取网络图片
const cheerio = require("cheerio") const axios = require("axios") const fs = require("fs") if (!fs.existsSync("download")) { fs.mkdirSync("download", ...
分类:Web程序   时间:2021-06-02 17:04:51    阅读次数:0
换根dp
#include <iostream> #include <vector> using namespace std; using ll = long long ; const int N=2e5+10; ll f[N],g[N],size1[N]; vector<int>gg[N]; void df ...
分类:其他好文   时间:2021-06-02 17:01:29    阅读次数:0
node 连接MySql数据库 实现数据的CRUD
1,准备工作: 安装MySQL2 驱动(库名称为mysql2 ): npm install mysql2 2,编写js代码: 2-1,数据库 查询 数据js代码 const mysql = require('mysql2') const connection = mysql.createConnec ...
分类:数据库   时间:2021-06-02 17:00:22    阅读次数:0
Java使用ArrayList、HashMap实现三人斗地主
ArrayList实现 code import java.util.ArrayList; import java.util.Collections; public class PokerDemo { public static void main(String[] args) { // 使用Arra ...
分类:编程语言   时间:2021-06-02 16:52:04    阅读次数:0
70582条   上一页 1 ... 28 29 30 31 32 ... 7059 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!