06 2015 档案

摘要:操作1. 修改VSFTP配置文件 vi /etc/vsftpd/vsftpd.conf #添加读取用户配置目录(注:本行配置默认没有,需要手动输入) user_config_dir=/etc/vsftpd/userconf2. 建立用户配置目录 mkdir /etc/vsftpd/userc... 阅读全文
posted @ 2015-06-05 17:07 hwu_harry 阅读(1570) 评论(0) 推荐(0)
摘要:【题目】 Given an array of integers, find out whether there are two distinct indicesiandjin the array such that the difference betweennums[i]andnums[j]is... 阅读全文
posted @ 2015-06-03 20:02 hwu_harry 阅读(111) 评论(0) 推荐(0)
摘要:【final】1. 修饰类的话,该类不能被继承(没有子类);2. 修饰方法的话,该方法可以被继承,不能被覆盖;3. 修饰成员变量的话,该变量为常量,只能被赋值一次,赋值后值不再改变;4. final不能修饰构造函数(构造函数不能被子类继承)【static】1. 修饰成员变量的话,该变量相当于是一个全... 阅读全文
posted @ 2015-06-02 09:47 hwu_harry 阅读(117) 评论(0) 推荐(0)