码迷,mamicode.com
首页 >  
搜索关键字:nexus one    ( 29197个结果
浅析Java中字符串初始化new String()和直接赋值的区别、数组初始化时用new与不用new的区别
首先明白一个事,Java存在一个常量池,可以用来存储字符串常量。 一、创建的字符串变量在内存中的区别 对于字符串:其对象的引用都是存储在栈中的,如果是编译期已经创建好(直接用双引号定义的)的就存储在常量池中,如果是运行期(new出来的)才能确定的就存储在堆中。对于equals相等的字符串,在常量池中 ...
分类:编程语言   时间:2021-06-11 19:06:10    阅读次数:0
EPPlus - 操作Excel
look at me Some common mistakes Don't use localized function names. Only english names (such as SUM, IF, VLOOKUP, etc) are supported. Don't use semico ...
分类:其他好文   时间:2021-06-11 18:40:41    阅读次数:0
java--JUC--公平锁,非公平锁,可重入锁,自旋锁,死锁
公平锁 非公平锁 可重入锁(递归锁) package com.model.lock; import java.util.concurrent.TimeUnit; import java.util.concurrent.locks.Lock; import java.util.concurrent.l ...
分类:编程语言   时间:2021-06-11 18:03:17    阅读次数:0
uniApp集成Vant Weapp
1.先获取Vant Weapp包,参考官方教程:https://vant-contrib.gitee.io/vant-weapp/#/home 2.项目下新建文件夹 wxcomponents / vant(名字随意,最好与 pages 平级),拷贝@vant/weapp下的 dist 文件夹到新建的 ...
分类:移动开发   时间:2021-06-11 18:01:50    阅读次数:0
如何解决Pulling without specifying how to reconcile divergent branches
% git pull hint: Pulling without specifying how to reconcile divergent branches is hint: discouraged. You can squelch this message by running one of t ...
分类:其他好文   时间:2021-06-10 18:54:15    阅读次数:0
maven 配置阿里云镜像,以及本地仓库,系统环境变量配置
settings,xml 阿里云镜像: <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/ ...
分类:其他好文   时间:2021-06-10 18:06:24    阅读次数:0
给没有列名的dataframe加上列名
test_data = pd.read_csv('news_data.csv', encoding='utf8',header=None) test_data.columns=['id','content'] print(test_data) 主要就是header=None 以及columns ...
分类:其他好文   时间:2021-06-08 22:50:08    阅读次数:0
element 抽屉drawer碰到的样式坑
###1.抽屉drawer出现蓝框bug 针对el-tabs出现蓝框的解决办法: /deep/.el-tabs__item:focus.is-active.is-focus { box-shadow: none; } 2. 针对自带的title出现蓝色框框的解决办法: /deep/ :focus { ...
分类:其他好文   时间:2021-06-08 22:24:47    阅读次数:0
IIS短文件名泄露漏洞检测
IIS短文件名泄露漏洞检测 http://www.xxxx.com/*~1****/a.aspx http://www.xxxx.com/l1j1e*~1****/a.aspx If the first one return an HTTP 404 and the second one return ...
分类:其他好文   时间:2021-06-07 20:37:21    阅读次数:0
How to Use cURL HTTP/2 on macOS
cURL is one of most powerful tools for testing HTTP traffic. We typically use cURL to interact with HTTP APIs or test websites. Although cURL supports ...
分类:Web程序   时间:2021-06-07 20:18:30    阅读次数:0
29197条   上一页 1 ... 6 7 8 9 10 ... 2920 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!