码迷,mamicode.com
首页 >  
搜索关键字:try    ( 12995个结果
it 作形式主语:It's no good doing sth.
It's no good doing sth. 这个 句型其实是一个省 略介词 in 的句型,完整形式是 It's no good in doing sth. 其中, good 是形容词,和介词 in 搭配 ,后面接动名词短语, 表示在做某过程中没有益处。 例句: It's no good read ...
分类:其他好文   时间:2021-03-02 12:07:16    阅读次数:0
jdb链接数据库,简单操作(ResultSet,浮标)(DriverManager 驱动管理器类 Connection 接口 Statement 接口)
链接数据库 public static void main(String[] args) { //简约方式 try { Connection conn = DriverManager.getConnection("jdbc:mysql:/mysql?user=aa"); Statement st = ...
分类:数据库   时间:2021-03-02 12:02:39    阅读次数:0
sleep的使用
package com.sean.base.threadStudy; import com.sean.base.object01.SimpleDateFormatDemo; import java.text.SimpleDateFormat; import java.util.Date; /** * ...
分类:其他好文   时间:2021-03-01 13:10:17    阅读次数:0
NXOpen批量创建部件
C++ 2010 //获取UI值和路径void CreateNewComponent::GetUIValueandPath() { try { NewName.clear(); NewNamePath.clear(); selectBodys.clear(); //获取显示部件的全路径 partfu ...
分类:其他好文   时间:2021-03-01 13:06:51    阅读次数:0
geoserver账号密码初始化
geoserver账号密码初始化 将D:\geoserver-2.16.2\data_dir\security\usergroup\default文件目录中的users.xml文件内容替换成下列内容: <?xml version="1.0" encoding="UTF-8"?> <userRegis ...
分类:其他好文   时间:2021-02-27 13:06:05    阅读次数:0
【Python】图片有效性管理
# -*- coding: UTF-8 -*- import os import imghdr def get_filelist(dir): for home, dirs, files in os.walk(dir): for filename in files: try: fullname = o ...
分类:编程语言   时间:2021-02-26 13:35:43    阅读次数:0
dateframe取子集总结
1.获取列 df['country'] df[['country','year']] #不能通过df[0]获取第一列,如果想通过列的索引位置获取列需要用到loc #获取所有列名 df.columns #得到一个Index类型 list(df.columns)#将得到的Index类型转成列表 2.获取 ...
分类:其他好文   时间:2021-02-24 13:04:07    阅读次数:0
mybatisMBG
1.创建空的maven项目,导如下依赖 <dependencies> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.4.5</version> </dependency> ...
分类:其他好文   时间:2021-02-23 14:26:33    阅读次数:0
[Math] 投影几何 Projective Geometry
Abstract Reference : https://brilliant.org/wiki/projective-geometry/ ...
分类:其他好文   时间:2021-02-23 14:03:46    阅读次数:0
多线程-java.util.concurrent.Exchanger
Exchanger的功能可以使2个线程之间传输数据,它比生产者消费者模式使用的wait/notify要更加方便,类Exchanger中的exchange()方法具有阻塞的特色,也就是此方法被调用后等待其他线程来取得数据,如果没有其他线程取得数据,则一直阻塞等待。Exchanger主要有两个方法 :e ...
分类:编程语言   时间:2021-02-22 12:34:21    阅读次数:0
12995条   上一页 1 ... 13 14 15 16 17 ... 1300 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!