上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: 内容:抽象、接口、多态 ######################################################################################################### 1、抽象 Abstract 方法抽象了,那么类也得抽象抽象类不能 阅读全文
posted @ 2018-03-21 21:11 Alos403 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 内容:dead code、关于eclipse没有js代码提示的解决 持续更新 ######################################################## dead code:类似图片这种,应该是表示不会执行到该语句,if判断出错 这里是判断文件是不是存在,不是判 阅读全文
posted @ 2018-03-20 16:39 Alos403 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 内容:单例,类继承,final ########################################################################################################################## 1、单例设计模式(23 阅读全文
posted @ 2018-03-20 15:31 Alos403 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 随机数、输入、byte数组和string转换 一些可能会使用到的方法。供及时查找 ########################random类使用 Random random = new Random(); for(int i = 0; i < 10 ;i++){ System.out.print 阅读全文
posted @ 2018-03-19 21:00 Alos403 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 内容:端口扫描器—脚本调用参数、多线程扫描、使用Nmap端口扫描代码环境:python+kali,靶机:win2003分成五步编写###############1、脚本调用的参数 import optparse parser = optparse.OptionParser('usage %prog 阅读全文
posted @ 2018-03-16 11:25 Alos403 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 内容:显示工具栏,设置主题、快捷键、开头文字、解释器 新增:pycharm添加下载模块 一些可能用到的设置,想起来就发上来。有需要的可以查看 ###############显示工具栏 ##############设置主题,我用的主题是这种比较暗的,不喜欢太亮的,比如那种基本都是白色的。 ###### 阅读全文
posted @ 2018-03-15 22:33 Alos403 阅读(642) 评论(0) 推荐(1) 编辑
摘要: 内容:判断质数 持续更新 # __author: _nbloser # date: 2018/2/4 import math def is_prime(number): num_sqrt = int(math.sqrt(number)) for i in range(2, num_sqrt + 1) 阅读全文
posted @ 2018-03-14 23:26 Alos403 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 内容:通过修改hosts文件,让pycharm不能够联网验证激活码的方式。我在kali和win10都成功了 1、修改hosts文件 Windows文件位置:C:\Windows\System32\drivers\etc Linux和mac的hosts文件路径为:/etc 在文件末尾添加:0.0.0. 阅读全文
posted @ 2018-03-14 22:46 Alos403 阅读(12037) 评论(0) 推荐(0) 编辑
摘要: 内容:数组定义,值的获取,长度,栈内存,堆内存 ################################# 数组定义: 格式1:元素类型[ ] 数组名 = new 元素类型 [数组长度] ; eg:int[ ] arr = new int[3]; 格式2:元素类型[ ] 数组名 = new 阅读全文
posted @ 2018-03-13 17:15 Alos403 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 内容:进程创建(两种方法) #############################第一种创建方法:通过创建线程对象,参数设置进程执行的方法以及方法的参数 #############################第二种创建线程的方法:1、创建类继承Process类2、类里面覆盖run方法3、创建 阅读全文
posted @ 2018-03-13 15:25 Alos403 阅读(175) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页