1.ip public class TestInetAddress { public static void main(String[] args) { try { //查询本机IP,可以new InetAddress byName = InetAddress.getByName("localhos ...
分类:
Web程序 时间:
2021-06-02 15:28:12
阅读次数:
0
html: <div class="mydiv1"></div> css: .mydiv1 { width: 100px; height: 100px; background: red; position: absolute; } js: let mydiv1 = document.querySel ...
分类:
Web程序 时间:
2021-06-02 15:25:39
阅读次数:
0
出现的问题: 利用ConfigurationProperties注解配置数据源发现读取的数据库配置信息全部为null。 @Bean(name = "pq") @ConfigurationProperties(prefix = "spring.datasource") public DataSourc ...
分类:
编程语言 时间:
2021-06-02 15:23:34
阅读次数:
0
相同点 😃 new/delete 和 malloc/free 都可以动态分配内存和释放内存 delete 和 free 都不能重复释放内存 delete 和 free 都可以释放空指针 不同点 1、new/delete 是C++的运算符,编译时需要加参数,malloc/free 是C语言中的函数, ...
分类:
其他好文 时间:
2021-06-02 15:04:08
阅读次数:
0
from fastapi.staticfiles import StaticFiles app.mount(path='/coronavirus/',app=StaticFiles(directory=' ./coronavirus/static', name='static')) ...
安卓11有权限要求,以下方法管用 //跳转到相机 private void showCamera() { File fileDir = new File(Environment.getExternalStorageDirectory(),"Pictures"); if (!fileDir.exist ...
分类:
移动开发 时间:
2021-06-02 14:56:05
阅读次数:
0
线程的生命周期是线程对象的生老病死,即线程的状态 线程生命周期可以通过 getState()方法获得, 线程的状态是Thread.State 枚举类型定义的, 由以下几种: NEW,新建状态. 创建了线程对象,在调用 start()启动之前的状态; RUNNABLE, 可 运行 状态. 它 是一 个 ...
分类:
编程语言 时间:
2021-06-02 14:43:17
阅读次数:
0
public void OnGet(int pageNo= 1,int pageSize=5) { var input = new PagedAndSortedResultRequestDto { MaxResultCount = pageSize, SkipCount = (pageNo - 1) ...
分类:
其他好文 时间:
2021-06-02 14:40:05
阅读次数:
0
1、String的基本特性 String:字符串,使用一对""引起来表示。 String sl = "hello";//字面量的定义方式 String s2 = new String("hello") ; String声明为final的, 不可被继承。 String实现了Serializable接口 ...
分类:
其他好文 时间:
2021-06-02 14:38:33
阅读次数:
0
routers/router.go package routers import ( "github.com/gin-gonic/gin" "gin-blog/pkg/setting" ) func InitRouter() *gin.Engine { r := gin.New() r.Use(gi ...
分类:
Web程序 时间:
2021-06-02 14:19:19
阅读次数:
0