理解 es6 class 中 constructor 方法 和 super 的作用

  • Post author:
  • Post category:其他

首先,ES6 的 class 属于一种“语法糖”,所以只是写法更加优雅,更加像面对对象的编程,其思想和 ES5 是一致的。 function Point(x, y) { this.x = x; this.y = y; } Point.prototype.toString = function() { return '(' + this.x + ',' + this.y + ')'; } 复制代码 …

继续阅读 理解 es6 class 中 constructor 方法 和 super 的作用

从源码中理解Spring Boot自动装配原理

  • Post author:
  • Post category:其他

一、什么是自动装配 SpringBoot 定义了一套接口规范,这套规范规定: SpringBoot 在启动时会扫描外部引用jar包中的 META-INF/spring.factories 文件,将文件中配置的类型信息加载到 Spring 容器,并执行类中定义的各种操作。对于外部jar包来说,只需要按照 SpringBoot 定义的标准,就能将自己的功能装配到 SpringBoot 中。 二、自动装…

继续阅读 从源码中理解Spring Boot自动装配原理

前端路线–bootstrap(day02)

  • Post author:
  • Post category:其他

day02-01-图片 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=d…

继续阅读 前端路线–bootstrap(day02)

两层卷积神经网络训练mnist数据集

  • Post author:
  • Post category:其他

简单的介绍一下构造的的这个比较简单的神经网络的结构,首先,我们这个输入依然是n个样本然后一张图片是784个像素点。第一层我们希望输出是64个特征图,所以我们设定有64个3*3大小的滤波器(卷积核)要注意我们这里的卷积核的深度为1,依赖于灰度图,所以我们输入图像的深度也为1,所以我们要保证卷积核和输入的深度是一致的。然后来到了第一个卷积层之后的池化层,我们设定池化的大小为2*2也就是经历一个池化层之…

继续阅读 两层卷积神经网络训练mnist数据集

CompletableFuture的使用和部分原理

  • Post author:
  • Post category:其他

CompletableFuture是一个异步编程工具类 简单使用 CompletableFuture<String> completableFuture = new CompletableFuture<>(); new Thread(() -> { try { Thread.sleep(1000); } catch (InterruptedException e) {…

继续阅读 CompletableFuture的使用和部分原理

Ubuntu显示“submodule(s) are missing“或“子模块未对路径注册“解决方案

  • Post author:
  • Post category:其他

最近测试openMVG的三维重建效果,于是在github下克隆openMVG的库,git clone过程成功进行,但是在build文件夹下cmake的时候error occured! 错误显示"submodule(s) are missing" 1、更新模块 在主文件夹下执行以下命令 git clone 父项目.git git submodule init git submodule update…

继续阅读 Ubuntu显示“submodule(s) are missing“或“子模块未对路径注册“解决方案

创建一个两轮ROS机器人

  • Post author:
  • Post category:其他

创建你的第一个两轮ROS机器人(模拟) sudo gedit myrobot.urdf <?xml version='1.0'?> <robot name="dd_robot"> <!-- Base Link --> <link name="base_link"> … </link> <!-- Right Wheel --> …

继续阅读 创建一个两轮ROS机器人

bat批处理之批量安装卸载apk

  • Post author:
  • Post category:其他

        工作中遇到的需求,要安装多个apk,所以就搜索资料资写了批量安装脚本,当然要安装就要卸载,顺便也写了个卸载脚本。         安装脚本内容: @echo off   setlocal EnableDelayedExpansion title install apks color 0a :: 重启adb 保证能顺利连接   adb kill-server   adb start-…

继续阅读 bat批处理之批量安装卸载apk

Win7安装.Net framework 3.5时出错的某解决办法

  • Post author:
  • Post category:其他

情况: Win7卸载了.Net Framework 3.5后, 做了些盘符的Symlink操作, 将一些大文件从C盘移到D盘. 再次安装.Net 3.5时, 怎么都装不上, 直接下载离线安装包, 一装就说必须用Windows Feature来装, 不能直接安装, 真是服了微软的这个脑残限制.  .Net 2.0, 4.0都没这限制.   那就用Windows Feature装, 结果也是一装就报错…

继续阅读 Win7安装.Net framework 3.5时出错的某解决办法