参考帖子:https://blog.csdn.net/linhunshi/article/details/72866345这篇帖子非常非常有用! 1、确保Android手机已经连上电脑,并且打开USB调试。(开发者模式打开+USB调试打开) 2、MAC终端下,命令行执行system_profiler ...
分类:
数据库 时间:
2021-02-18 12:58:46
阅读次数:
0
Spring Security简介 历史 添加parent和web依赖 SpringBootApplication @MapperScan@SpringBootApplication public class SpringSecurityApplication{ public static void ...
分类:
编程语言 时间:
2021-02-17 14:45:56
阅读次数:
0
# Author:Winter Liu is coming!import cv2 as cvimport numpy as npimport pytesseract # 预处理,高斯滤波(用处不大),4次开操作# 过滤轮廓唯一def contour_demo(img): gray = cv.cvtC ...
分类:
编程语言 时间:
2021-02-17 14:01:12
阅读次数:
0
初识Java Java帝国的诞生 J2SE× J2ME× J2EE√ >服务器 Maven Tomcat Spring intellij idea Hadoop Android Java的特性和优势 简单 面向对象 可移植 高性能 分布式 动态性 多线程 安全性 Java为什么成功? 准备+机遇 J ...
分类:
编程语言 时间:
2021-02-16 12:44:30
阅读次数:
0
1.断言 标准库 testing "github.com/stretchr/testify/assert" func TestDemo(t *testing.T) { assert.Nil(t, nil) assert.NotNil(t, struct{}{}) assert.Equal(t, 5, ...
分类:
编程语言 时间:
2021-02-16 12:02:30
阅读次数:
0
// 命令行java命令执行的时候这里会报错的,所以需要去com的上一级的目录去java com.mixi.wc.Demo 这样去执行 package com.moxi.wc; /** * @author Mr.Wang * @version 1.0 * @since 1.8 */ public c ...
分类:
其他好文 时间:
2021-02-16 11:56:24
阅读次数:
0
回到顶部 一、小案例分析 1、功能需求: 现有一个员工,姓名为Rick,年龄22,ID为193211,如何创建10个完全相同的对象。 2、小菜鸡的答案: (1)直接new 10个对象就完了。(2)代码实现: package prototype.pattern; public class Demo { ...
分类:
其他好文 时间:
2021-02-16 11:49:00
阅读次数:
0
dremio 自定义函数的开发与drill 模式是一样的,以下是一个简单demo 预备 dremio 一些核心的功能都是在 dremio-sabot-kernel 中的,可以看看源码还是比较有用的 项目结构 项目主要是创建一个uuid 的函数 项目结构 ├── pom.xml ├── src │ ├ ...
分类:
其他好文 时间:
2021-02-15 12:43:24
阅读次数:
0
问题描述 # python3.7 /tmp/demo.py Traceback (most recent call last): File "/tmp/demo.py", line 4, in <module> driver = webdriver.Chrome('/srv/sharing/pack ...
分类:
其他好文 时间:
2021-02-15 12:38:15
阅读次数:
0
public class demo3 { public static void main(String[] args) { // 增强for循环 <=> 数组或者集合对象的语法糖 int[] arr = {1,2,3,4,5,6}; // 最笨的方法 for(int i = 0; i < arr.l ...
分类:
其他好文 时间:
2021-02-15 12:35:46
阅读次数:
0