注释
/*** Implementation of {@link IDropBoxManagerService} using the filesystem.* Clients use {@link DropBoxManager} to access this service.** DropBoxManager借助IDropBoxManagerService访问DropBoxManagerService*/DropBoxManagerService是一个系统服务,用于收集…
C 的模板(Template)和 C# 的泛型(Generics),虽然在概念上非常相似,都是为了实现泛型编程而设计的语言特性,但在具体实现和使用方式上有一定的差异。 C 模板
C 中的模板分为两类:函数…
如何在python程序中使用正则表达式?就是使用re模块
re模块使用:
1、findall查找所有,返回list
list re.findall("n","I love learning English and Chinese!")
print(list) # 输出结果:[n,n,n,n,n]
list…
SQL是一个针对SQL Server数据库的查询执行过的历史
select * from (SELECT
*FROM sys.dm_exec_query_stats QS CROSS APPLY sys.dm_exec_sql_text(QS.sql_handle) ST ) a
where a.creation_time >2018-07-18 17:00:00 and charindex(delete from ckcdlist ,text)>0 an…