COCO 的jeson 文件: "images": [{"file_name": "811000171.jpg", "height": 720, "width": 1280, "id": 811000171}, {"file_name": "811000131.jpg", "height": 720 ...
分类:
其他好文 时间:
2021-06-24 18:06:36
阅读次数:
0
数组 定义方式 类型[] 数组名 = new 数组类型[长度]; 然后靠下标去逐个添加 也可以直接写死 类型[] 名 = {内容}; package com.li.array; /** * @创建人 语零 * @时间 2021-06-24-8:55 * @描述 */ public class Arr ...
分类:
编程语言 时间:
2021-06-24 18:04:43
阅读次数:
0
data() { return { krpano:null //存krpano变量 } }, // 初始化全景 embedpanoInit(name) { if (document.getElementById('krpanoObject')) { document.getElementById(' ...
分类:
其他好文 时间:
2021-06-24 18:00:55
阅读次数:
0
创建数据库: CREATE TABLE emp( eid INT , -- 员工编号 NAME VARCHAR(10), -- 姓名 age INT -- 年龄 ); 插入多条数据记录: (1)方法一:依次输入插入数据 INSERT INTO dept (eid,NAME,age) VALUES ( ...
分类:
数据库 时间:
2021-06-24 17:50:19
阅读次数:
0
结论 配置demo: location xxx { root yyy } 浏览器访问 xxx,实际访问的是 yyy/xxx浏览器访问 xxx/abc.html,实际访问的是 yyy/xxx/abc.html浏览器访问 xxx/ccc/abc.html,实际访问的是 yyy/xxx/ccc/abc.h ...
分类:
其他好文 时间:
2021-06-24 17:47:20
阅读次数:
0
QFile file("E:\\community.txt"); QTextStream in(&file); in.setCodec(QTextCodec::codecForName("UTF-8"));//让文件以UTF-8的方式译码。 if(!file.open(QIODevice::Read ...
分类:
其他好文 时间:
2021-06-24 17:42:59
阅读次数:
0
源码地址 https://github.com/hku-mars/loam_livox Ubuntu16.04安装ROS Kinetic详细过程 https://blog.csdn.net/weixin_43159148/article/details/83375218 sudo sh -c 'ec ...
分类:
Web程序 时间:
2021-06-24 17:41:41
阅读次数:
0
{ "category":[ "id":"1", "isleaf":"0", "isshow":"1", "label":"根结点", "name":"根结点", "orderby":1, "parentid":"0", "children":[ { "id":"1-1 ...
分类:
Web程序 时间:
2021-06-24 17:37:47
阅读次数:
0
1、oracle中用户密码复杂度配置 1)查看参数 select limit from dba_profiles where resource_name='PASSWORD_VERIFY_FUNCTION' and profile in (select profile from dba_users ...
分类:
数据库 时间:
2021-06-24 17:35:08
阅读次数:
0
新建一个工程项目 开启本地的mysql数据库 配置mysql连接信息 编写测试类 package com.atguigu.springboot06jdbc; import org.junit.jupiter.api.Test; import org.springframework.beans.fac ...
分类:
编程语言 时间:
2021-06-23 17:18:23
阅读次数:
0