Wesley13 Wesley13
3年前
SQL UPDATE实现多表更新
SQLUPDATE实现多表更新from:http://bbs.chinabyte.com/thread34716911.html(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fbbs.chinabyte.com%2Fthread34716911.html)在开发中,数
CuterCorley CuterCorley
4年前
C语言入门系列之11.文件和文件操作
一、C文件概述1.基本概念文件是指一组相关数据的有序集合,这个数据集有一个名称,叫做文件名。我们在前面的已经使用到了很多文件,例如源程序文件、目标文件、可执行文件、库文件(头文件)等。文件通常是驻留在外部介质(如磁盘等)上的,在使用时才调入内存中来。操作系统是以文件为单位对数据进行管理的,示意如下:2.文件分类从不同
Wesley13 Wesley13
3年前
C++文件及文件夹操作整理(代码示例)
一文件1.1使用C标准库中的IO库(fstream)读写文件include<iostreaminclude<fstreamusingnamespacestd;intmain(){charszData200"123456tes
Wesley13 Wesley13
3年前
Java中使用File类删除文件夹和文件
删除工具类:importjava.io.File;publicclassDeleteAll{publicstaticvoiddeleteAll(Filefile){if(file.isFile()||file.list().length0){
Wesley13 Wesley13
3年前
JS内存泄漏排查方法
原文链接:http://caibaojian.com/chromeprofiles.html(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fcaibaojian.com%2Fchromeprofiles.html)一、概述GoogleChrome浏览器提供了非常强
Wesley13 Wesley13
3年前
Java NIO 系列学习(一)Java NIO概述
参考资料:http://www.importnew.com/19816.html(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fwww.importnew.com%2F19816.html)http://ifeve.com/overview/(http
Stella981 Stella981
3年前
Python组织文件 实践:拷贝某种类型的所有文件
!python3chapter09test01遍历目录树,查找特定扩展名的文件不论这些文件的位置在哪里,都将他们拷贝到一个新的文件夹中importos,shutil,pprint寻找指定文件夹内的某种类型的文件返回匹配文件的绝对地址的一个列表
Stella981 Stella981
3年前
Redis 过期时间与内存管理
http://www.redis.cn/commands/expire.html(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fwww.redis.cn%2Fcommands%2Fexpire.html)http://www.redis.cn/topics/lruc
Wesley13 Wesley13
3年前
(转) 分布式系统关注点——99%的人都能看懂的「熔断」以及最佳实践
原贴: https://www.cnblogs.com/ZacharyFan/p/9976197.html(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.cnblogs.com%2FZacharyFan%2Fp%2F9976197.html)