上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 56 下一页

2020年2月21日

摘要: package myproject; public class TestMethod { //定义函数 public static void eating() { //没有返回值用void System.out.println("eat函数"); } public static int add(in 阅读全文
posted @ 2020-02-21 16:53 happygril3 阅读(141) 评论(0) 推荐(0)
摘要: package myproject; public class TestBreakContinue { public static void main(String[] args) { //break 跳出循环,结束运行 1234 for (int i=1;i<10;i++) { if(i==5) 阅读全文
posted @ 2020-02-21 16:25 happygril3 阅读(113) 评论(0) 推荐(0)
摘要: package myproject; public class TestWhile { public static void main(String[] args) { //while循环 int b=1;//初始化 while(b<=10) {//条件判断 System.out.println(b 阅读全文
posted @ 2020-02-21 15:59 happygril3 阅读(146) 评论(0) 推荐(0)
摘要: package myproject; public class Switch_Case { public static void main(String[] args) { double d=Math.random(); int e=(int)(d*5); System.out.println(e) 阅读全文
posted @ 2020-02-21 13:05 happygril3 阅读(125) 评论(0) 推荐(0)
摘要: package myproject; public class TestIf { public static void main(String[] args) { double d=Math.random(); int e=(int)(d*5); System.out.println(e); //单 阅读全文
posted @ 2020-02-21 09:28 happygril3 阅读(151) 评论(0) 推荐(0)

2020年2月20日

摘要: --算术运算符:+ - * / % ++ 赋值运算符: 关系运算符:> < >= <= == != instanceof--逻辑运算符: && || !--位运算符:&(按位与) |(按位或) ^(按位异或) ~(按位取反) >>(右移 /2取商) <<(左移*2) --条件运算符:x?y :z-- 阅读全文
posted @ 2020-02-20 20:38 happygril3 阅读(214) 评论(0) 推荐(0)
摘要: 5.数据类型 基本数据类型: 数值型 整数类型(byte,short,int,long) byte 1个字节--2^8--128 short--2个字节--2^16--约3万 int 4个字节--2^32--约21亿 long 8个字节--2^64-- BigInteger 浮点型(float,do 阅读全文
posted @ 2020-02-20 14:27 happygril3 阅读(199) 评论(0) 推荐(0)

2020年2月19日

摘要: 1.java各版本和体系架构 J2EE(JAVAEE) -java 2 Enterprise Edition -定位在服务器端的应用 J2SE(JAVASE) -Java 2 Standard Edition -定位在个人计算机上的应用 J2ME(JAVAME) -java2 Micro Editi 阅读全文
posted @ 2020-02-19 08:29 happygril3 阅读(146) 评论(0) 推荐(0)

2020年1月14日

摘要: 3.1 概述实体的获取: 从文本语料库挖掘尽可能多的高质量词汇 领域短语挖掘 同义词挖掘 缩略词挖掘 实体识别 当一个词汇在某个上下文表达的是某个预定义的概念时,该词汇就是一个实体词汇表: 主题词 关系:等价关系,等级关系3.2 领域短语挖掘3.2.1 问题描述输入:领域预料 输出:高质量短语(Hi 阅读全文
posted @ 2020-01-14 14:40 happygril3 阅读(2842) 评论(0) 推荐(1)

2020年1月9日

摘要: 1. 基于图的表示 二元组G=G(V,E),V表示点的集合,E表示边的集合2. 基于三元组的表示 <主体(Subject)谓词(Predicate)客体(Object)> <主体(Subject)属性(Property)属性值(Property Value)>3. 知识图谱的数值表示 知识图谱中事实 阅读全文
posted @ 2020-01-09 17:37 happygril3 阅读(3247) 评论(0) 推荐(0)
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 56 下一页

导航