```javapublic class oopDemo6Student { String name; int age; public void study(){ System.out.println(this.name+"在学习"); }}//person >名字、生日、身高、体重//类(抽象) > ...
分类:
其他好文 时间:
2021-04-30 12:16:19
阅读次数:
0
public class oopDemoStufent2 { //static是一个静态方法 public static void say1(){ System.out.println("学生说好"); }} public class oopDemoStudent { //没有static就是非静态 ...
分类:
其他好文 时间:
2021-04-30 12:15:30
阅读次数:
0
package com.itheima.demo01.arr; public class ShuZuTuZi { public static void main(String[] args) { //为了存储多个月兔子对数,定义一个数组,用动态初始化完成数组元素的初始化,长度为20 int[] ar ...
分类:
其他好文 时间:
2021-04-30 12:11:35
阅读次数:
0
package com.itheima.demo02; public class GeRenXinXi { public static void main(String[] args) { String name ="张三"; System.out.println(name); int age = ...
分类:
其他好文 时间:
2021-04-30 11:58:53
阅读次数:
0
package com.itheima.demo01.arr; public class ShiWeiWeiTwo { public static void main(String[] args) { for (int i = 100; i < 1000; i++) { if (i/10%10==2 ...
分类:
其他好文 时间:
2021-04-30 11:58:22
阅读次数:
0
ImageMagick 简单使用 ImageMagick可以调整图像的大小,翻转,镜像,旋转,变形,剪切和变换,调整图像颜色,应用各种特殊效果,或绘制文本,线条,多边形,椭圆和贝塞尔曲线 几个简单的命令demo: ../magick logo: logo.gif ### 图片合成 ../magick ...
分类:
其他好文 时间:
2021-04-27 14:42:54
阅读次数:
0
借助mmocr框架,测试几种算法的效果。 这是一个文字检测和文字识别库,集成了很多的模型,包括PSENet、PixelLink等等 安装参考 https://mmocr.readthedocs.io/en/latest/install.html (base) xuehp@haomeiya009:~/ ...
分类:
Web程序 时间:
2021-04-26 13:44:18
阅读次数:
0
本人被el-upload的上传困扰了许久,查阅了不少资料,暂时是解决了 主要就是对el-upload实现上传图片的途径的不理解 先贴代码,之后在做分析吧 vue部分 <div class="pic"> <el-image class="userImg" :src="localUserImg"> <d ...
分类:
Web程序 时间:
2021-04-21 12:59:14
阅读次数:
0
测试环境 MySQL版本: 5.7.30 事务级别: READ-COMMITTED 测试数据 mysql> show create table tb1001 \G *************************** 1. row *************************** Table ...
分类:
数据库 时间:
2021-04-14 12:34:40
阅读次数:
0
package com.kuang.struct; public class TestDemo { public static void main(String[] args) { //打印三角形 5行 for (int i = 1; i <= 5; i++) { for (int j = 5; j ...
分类:
其他好文 时间:
2021-04-14 12:09:53
阅读次数:
0