懵懂的菜鸟

Stay hungry,Stay foolish.

导航

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 34 下一页

2017年9月4日 #

java @option之args4j

摘要: args4j简介 args4j是一个用来配置命令行的工具。 在实际的项目中用到命令行的并不是很常见,但当真正使用到时,特别是在程序启动时配置一下参数的时候就很有用了,如果参数很多的话,一个一个解析命令行还是比较麻烦的.这时使用Args4J就相当好办了. 在本文中我们来看看Args4J的使用,当需要时 阅读全文

posted @ 2017-09-04 14:17 懵懂的菜鸟 阅读(1690) 评论(0) 推荐(0) 编辑

静态代码块和this

摘要: /* 静态代码块。随着类的加载而执行。而且只执行一次。 作用: 用于给类进行初始化。 */class StaticCode{ static int num ; static { num = 10;// num *=3; System.out.println("hahahah"); } StaticC 阅读全文

posted @ 2017-09-04 13:10 懵懂的菜鸟 阅读(534) 评论(0) 推荐(0) 编辑

Java static说明

摘要: class Person{ String name;//成员变量,实例变量 static String country = "CN";//静态变量。类变量 public void show() { System.out.println(Person.country+":"+this.name); } 阅读全文

posted @ 2017-09-04 13:07 懵懂的菜鸟 阅读(436) 评论(0) 推荐(0) 编辑

public static void main(String[] args)说明

摘要: /*public static void main(String[] args) 主函数特殊之处:1,格式是固定的。2,被jvm所识别和调用。 public:因为权限必须是最大的。static:不需要对象的,直接用主函数所属类名调用即可。void:主函数没有具体的返回值。main:函数名,不是关键字 阅读全文

posted @ 2017-09-04 13:04 懵懂的菜鸟 阅读(820) 评论(0) 推荐(0) 编辑

public class 和class 的区别

摘要: Java在编写类的时候可以使用两种方式定义类: public class定义类: class定义类: 如果一个类声明的时候使用了public class进行了声明,则类名称必须与文件名称完全一致。范例:定义一个类(文件名称为:Hello.java)public class HelloDemo{ // 阅读全文

posted @ 2017-09-04 12:59 懵懂的菜鸟 阅读(1054) 评论(0) 推荐(0) 编辑

Java泛型

摘要: 一. 泛型概念的提出(为什么需要泛型)? 首先,我们看下下面这段简短的代码: 1 public class GenericTest { 2 3 public static void main(String[] args) { 4 List list = new ArrayList(); 5 list 阅读全文

posted @ 2017-09-04 12:52 懵懂的菜鸟 阅读(362) 评论(0) 推荐(0) 编辑

2017年9月1日 #

pyhthon 求GPA平均学分绩点

摘要: 1 #coding=utf-8 2 ''' 3 北大4.0 4 成绩 学分 5 100~90 4.0 6 89~85 3.7 7 84~82 3.3 8 81~78 3.0 9 77~75 2.7 10 74~72 2.3 11 71~68 2.0 12 67~64 1.5 13 63~60 1.0 14 59~0 ... 阅读全文

posted @ 2017-09-01 23:30 懵懂的菜鸟 阅读(628) 评论(0) 推荐(0) 编辑

机器学习 数据预处理之独热编码(One-Hot Encoding)

摘要: 问题由来 在很多机器学习任务中,特征并不总是连续值,而有可能是分类值。 例如,考虑一下的三个特征: ["male", "female"] ["from Europe", "from US", "from Asia"] ["uses Firefox", "uses Chrome", "uses Saf 阅读全文

posted @ 2017-09-01 11:25 懵懂的菜鸟 阅读(995) 评论(0) 推荐(0) 编辑

python 取整itertools

摘要: 1 #coding:utf-8 2 import sys 3 import itertools 4 5 def MaxString(n,nums): 6 7 list1 = nums 8 list2 = [] 9 for i in range(1, len(list1) + 1): 10 iter = itertools.combin... 阅读全文

posted @ 2017-09-01 09:43 懵懂的菜鸟 阅读(276) 评论(0) 推荐(0) 编辑

2017年8月31日 #

python 输入输出

摘要: 1 if __name__=='__main__': 2 # ff=input() 3 # print(type(ff))# 4 # a=int(input()) 5 # a1=raw_input()#python3 舍弃,python2还用 6 line=sys.stdin.readline() 7 line1=line.strip... 阅读全文

posted @ 2017-08-31 22:04 懵懂的菜鸟 阅读(321) 评论(0) 推荐(0) 编辑

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 34 下一页