全部文章
教大家如何折一个装桌面垃圾的纸盒子,这样在位置上吃零食的时候就不会把桌面弄脏了。
1,数据结构及算法基本概念初步; "程序包含": A, 数据结构(data
structure):对数据的描述,即在程序中指定数据的数据类型及数据的组织形式; B, 对操作的描述:操作步骤即--算法;完整C程序 = Algorithm
+ "Data structure";现实生活中算法概念身影:做...
连接DB2数据库时提示密码过期,提示如下:SQL30082N Security
processing failed with reason "1" ("PASSWORD
EXPIRED").SQLSTATE=08001解决办法:linux环境下切换到root用户,more /etc/shadow可以...
IDisposable概述
GC(垃圾收集器)只能回收托管(Managed)内存资源,对于数据库连接、文件句柄、Socket连接等这些资源(非托管资源,UnManaged)就无能为例,必须程序员自己控制资源的回收。非托管资源:SqlConnection、FileStream等。
对于使用非内存资源的...
今天发现自己虚拟机的vsftp使用本地用户名无法登陆,于是重新配置,但配置了很多次都没成功,一直显示530 Login incorrect.Login
failed尝试了网上很多修改PAM的方案后(修改/etc/pam.d/vsftpd的文件内容),还是无法解决。于是将vsftp删除,重装,删除配置...
使用PPA(Personal Package Archive)在ubuntu上安装emacs1添加
PPA 到 apt repository 中: $ sudo add-apt-repository ppa:cassou/emacs $ sudo
apt-get update2然后,可以使用apt-...
Test demo adfadfasfasdfasdf adfadfasfasdfasdf
adfadfasfasdfasdf adfadfasfasdfasdf isString isInteger isTelephone isMobile
isEmail isUri 原文地址:http://ww...
https://itunes.apple.com/cn/course/developing-ios-7-apps-for/id733644550Developing
iOS 7 Apps for iPhone and iPad课程简介Updated for iOS 7. Tools and APIs...
Distinct Subsequences2014.2.8 22:11Given a
stringSand a stringT, count the number of distinct subsequences ofTinS.A
subsequence of a string is a new s...
结构体结构体和类的区别:结构体是值类型,类是引用类型结构体非常类似于类,但是值类型(拷贝传递),不能被继承Int32、DateTime等都是结构体,从ValueType继承,值类型。结构体测试程序:
1 using System; 2 using System.Collections.Generic...