摘要: ``` // // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package org.springframework.context.annotation; import java.lang.annotation.Documented; imp 阅读全文
posted @ 2020-04-11 09:46 xl4ng 阅读(253) 评论(0) 推荐(0) 编辑
摘要: ``` package com.springboot.chapter3.pojo; public class User { private Long id; private String userName; private String note; public Long getId() { return id; } public void setId(Long id) { this.id = i 阅读全文
posted @ 2020-04-11 09:30 xl4ng 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 在Java中使用枚举 public class Main { public static void main(String[] args) { Season s = Season.WINTER; //打印枚举的名称 WINTRE System.out.println(s.name()); //打印枚 阅读全文
posted @ 2020-04-08 21:46 xl4ng 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: ``` String s = ""; Class cl1 = s.getClass(); String className1 = s.getClass().getName(); String className2 = "java.lang.String"; Class cl2 = Class.forName(className2); //如果T是任意的Java类型(或void关键字),T.clas 阅读全文
posted @ 2020-04-06 10:17 xl4ng 阅读(1304) 评论(0) 推荐(0) 编辑
摘要: Java代码 C 代码 阅读全文
posted @ 2020-04-05 18:05 xl4ng 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1. flex direction属性决定主轴的方向 | 值 | 描述 | | : | : | | row | 默认值。主轴为水平⽅方向,起点在左边。 | | row reverse |主轴为水平⽅方向,起点在右边。 | | column | 主轴为垂直方向,起点在上面。 | | column re 阅读全文
posted @ 2020-04-05 10:44 xl4ng 阅读(157) 评论(0) 推荐(0) 编辑
摘要: flex布局是什什么? Flex意思是弹性布局,是css3中的新布局模块,⽤用来为盒模型提供最⼤大的灵活性。可改进容器器中的项⽬目对⻬齐,⽅方向和顺序,即使他们具有动态甚⾄是未知⼤小。Flex容器器能够调节⼦子节点的宽度或高度,以便便适应不同的屏幕尺寸。 基本概念 flex布局可以将⼀个元素看成⼀个 阅读全文
posted @ 2020-04-05 10:24 xl4ng 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 设置为全局 阅读全文
posted @ 2020-04-05 09:49 xl4ng 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 一、基本使用 1.无参数GET请求 2.带参数GET请求 3.POST请求 4.发送并发请求 5.使用全局的axios和对应的配置在进行网络请求 阅读全文
posted @ 2020-04-05 09:43 xl4ng 阅读(517) 评论(0) 推荐(0) 编辑
摘要: 在样式后面加上 !important; 如 阅读全文
posted @ 2020-04-05 09:29 xl4ng 阅读(146) 评论(0) 推荐(0) 编辑