推荐
专栏
教程
课程
飞鹅
本次共找到4130条
类对象
相关的信息
CuterCorley
•
4年前
Python SQLite 基本操作和经验技巧(一)
1.插入单行数据pythonimportsqlite3consqlite3.connect('xxxx/test.db')curcon.cursor()创建游标对象cur.execute("createtableStudent(SNOchar(10)UNIQUEprimarykey,Snamechar(20),Sse
Easter79
•
4年前
SpringBoot2.0 基础案例(06):引入JdbcTemplate,和多数据源配置
本文源码GitHub:知了一笑https://github.com/cicadasmile/springbootbase一、JdbcTemplate对象1、JdbcTemplate简介在SpringBoot2.0框架下配置数据源和通过J
Stella981
•
4年前
SpringBoot2.0 基础案例(06):引入JdbcTemplate,和多数据源配置
本文源码GitHub:知了一笑https://github.com/cicadasmile/springbootbase一、JdbcTemplate对象1、JdbcTemplate简介在SpringBoot2.0框架下配置数据源和通过J
Stella981
•
4年前
ExecutorService线程池
ExecutorService建立多线程的步骤:1。定义线程类classHandlerimplementsRunnable{}2。建立ExecutorService线程池ExecutorServiceexecutorServiceExecutors.newCachedThreadPool();或者
Wesley13
•
4年前
Android中获得上下文的静态方法
//在Android的清单文件做如下申明:<applicationandroid:name"com.xyz.MyApplication"</application//然后写这个类:publicclassMyApplicationextendsApplication{
Easter79
•
4年前
SpringQuartz定时任务调度器
JAVA代码测试类public class TestQuartz {public void test(){System.out.println("Quartz的任务调度");}}Quartz配
Wesley13
•
4年前
ORACLE常用系统查询SQL
1 查询系统所有对象SELECT OWNER, OBJECT_NAME, OBJECT_TYPE, CREATED, LAST_DDL_TIME, TIMESTAMP, STATUSFROM DBA_OBJECTS WHERE OWNERUPPER('SCOTT')2 查看系统所有表SELECT
Wesley13
•
4年前
C#NULL条件运算符
C6.0新增的特性NULL条件运算符?.之前我们在需要判断某个对象是否为空的是这样的Personpernull;if(per!null){Console.Write("");
Wesley13
•
4年前
JAVA hashCode和equals方法详解
hashCode和equals方法都是Object基类的方法先看一个例子publicclassStudeng{privateIntegersid;privateStringname;publicIntegerge
Stella981
•
4年前
Python之使用eval()函数将字符串的数据结构提取出来
datainput('请输入你要修改的对象:').strip()'''输入下面的字典列表{'backend':'www.oldboy1.org','record':{'server':'2.2.2.4','weight':20,'maxconn':3000}},{'backend':'www.oldboy1.or
1
•••
181
182
183
•••
413