Git使用 什么是版本控制 版本控制(Revision control)是一种在开发的过程中用于管理我们对文件、目录或工程等内容的修改历史,方便查看更改历史记录,备份以便恢复以前的版本的软件工程技术。 实现跨区域多人协同开发 追踪和记载一个或者多个文件的历史记录 组织和保护你的源代码和文档 统计工作 ...
分类:
其他好文 时间:
2021-06-28 17:37:43
阅读次数:
0
新建MybatisPlusConfig 配置文件 package com.luna.demo.config; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.extension.pl ...
分类:
其他好文 时间:
2021-06-25 17:27:00
阅读次数:
0
import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * @author: small-sunshine * @Description:考拉兹猜想,100万以内的数 * @date: 2021/ ...
分类:
其他好文 时间:
2021-06-25 17:25:25
阅读次数:
0
package main import ( "fmt" "time" ) var jobs chan int var results chan int func work(id int, jobs <-chan int, results chan<- int) { for i := range jo ...
分类:
其他好文 时间:
2021-06-25 17:24:48
阅读次数:
0
轻轻的 我来到你的身边 想念你的 是我落寞的寂寥 时光不在 但是 你的温柔 我永远记得 在这个狂热的夏天 挥舞在整个天空中 留下的 是我对你无尽的思念 以及我无限的情怀 想飞的水 ``` 2021.06.25 ...
分类:
其他好文 时间:
2021-06-25 17:19:45
阅读次数:
0
<div class="box"> <div class="home_top"> 这里是内容 </div> </div> .box { width: 250px; margin: auto; overflow: hidden; } .home_top { position: relative; wi ...
分类:
Web程序 时间:
2021-06-25 17:14:44
阅读次数:
0
伪代码贴上 @Override protected void onCreate(Bundle savedInstanceState) { mWebView = (WebView) findViewById(R.id.webview); //获得webView initWebView(); } pri ...
分类:
移动开发 时间:
2021-06-25 17:11:53
阅读次数:
0
# 1.算数运算符import b as bx = 10y = 3.1z = 3print(x + y)print(x*z)print(x/z) # 结果带小数print(x//z) # 结果只保留整数print(x % z) # 取模,取余数print(x**z) # 取幂# 2.比较运算prin ...
分类:
编程语言 时间:
2021-06-25 17:11:14
阅读次数:
0
网上的写法,都有点不太一样。 首先,看一下我的gateway版本 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> <vers ...
分类:
其他好文 时间:
2021-06-25 17:10:18
阅读次数:
0
import com.alibaba.fastjson.JSON; import org.apache.commons.lang.StringUtils; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; ...
分类:
Web程序 时间:
2021-06-25 17:08:46
阅读次数:
0