background picture of the home page

Hello World

Mac系统安装JDK1.8及环境变量配置

参考: https://www.jianshu.com/p/a85658902f26 到Oracle官网下载JDK1.8安装包。 打开获取到的安装包按步骤安装到系统上。 配置系统的环境变量。 验证JDK1.8是否安装成功。 到Oracle官网下载JDK1.8安装包 https://www.oracl

thumbnail of the cover of the post

github ssh 免密登陆

参考: https://blog.csdn.net/familyshizhouna/article/details/81008738 git config --global user.name n git config --global user.email e ssh-keygen

thumbnail of the cover of the post

Http客户端工具类-HttpUtil

参考: https://www.hutool.cn/docs/#/http/Http%E5%AE%A2%E6%88%B7%E7%AB%AF%E5%B7%A5%E5%85%B7%E7%B1%BB-HttpUtil https://apidoc.gitee.com/dromara/hutool/ 概述

thumbnail of the cover of the post

【Vue3】Vue Router4路由的配置

参考: https://blog.csdn.net/weixin_43657300/article/details/128013276 npm install vue-router@4 在main.js中引入router插件 import { createApp } from 'vue' impo

thumbnail of the cover of the post

idea 代码缩写设置

参考: https://www.cnblogs.com/babyshe/articles/11965608.html 路径 File | Settings | Editor | Live Templates 个人常用的Java模板设置: 缩写 内容 psvm public static

thumbnail of the cover of the post

scipy求积分

参考: https://blog.csdn.net/qq_39705870/article/details/79998359 http://liao.cpython.org/scipy18/#18-scipy import numpy as np from scipy.integrate impor

thumbnail of the cover of the post

notes

1. 考虑用静态工厂方法代替构造器 对于类而言,为了让客户端获取它自身的一个实例 ,最常用的方法就是提供 一个公有的构 造器。还有一种方法,也应该在每个程序员的 工具箱中占有一席之地。类可以提供一个公有 的静态工厂方法(staticfactorymethod),它只是 一个返回类的实例的静态方法。

thumbnail of the cover of the post

[102]二叉树的层次遍历

参考: https://leetcode-cn.com/problems/binary-tree-level-order-traversal/solution/er-cha-shu-de-ceng-ci-bian-li-by-leetcode/ package T102二叉树的层次遍历; impo

thumbnail of the cover of the post

获取对象信息

当我们拿到一个对象的引用时,如何知道这个对象是什么类型、有哪些方法呢? 使用type() 首先,我们来判断对象类型,使用type()函数: 基本类型都可以用type()判断: >>> type(123) <class 'int'> >>> type('str') <class 'str'> >>>

thumbnail of the cover of the post