上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: SQL SQL:结构化查询语言,分为以下几个部分。 ·数据定义语言(Data-Definition Language, DDL):SQL DDL提供定义定义关系模式、删除关系以及修改关系模式的命令。 ·数据操纵语言(Data-Manipulation Language, DML):SQL DML包括 阅读全文
posted @ 2017-11-18 14:24 丹尼尔奥利瓦 阅读(1390) 评论(0) 推荐(0) 编辑
摘要: $ gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/ $ gem sources -l *** CURRENT SOURCES *** https://gems.ruby-china.org $ gem install mongo 阅读全文
posted @ 2017-11-17 14:12 丹尼尔奥利瓦 阅读(2368) 评论(0) 推荐(0) 编辑
摘要: Local Search Systematic algorithms: achieve systematicity by keeping one or more paths in memory and by recording which alternatives have been explore 阅读全文
posted @ 2017-11-12 13:14 丹尼尔奥利瓦 阅读(3945) 评论(0) 推荐(0) 编辑
摘要: 关系数据库的结构 ·关系(relation):关系用来指代表。关系数据库由表(table)的集合构成,每个表有唯一的名字。表中的一行代表一组值之间的一种联系,一个表就是这种联系的一个集合。 ·元组(tuple):指代表中的一行。元组是一组值的序列,n个值之间的一种联系可以用一个n元组来表示。 关系是 阅读全文
posted @ 2017-11-09 10:39 丹尼尔奥利瓦 阅读(1518) 评论(0) 推荐(0) 编辑
摘要: 文件处理系统(file-processing system)的主要弊端: 数据冗余和不一致(data redundancy and inconsistency)、数据访问困难(difficulty in accessing data)、数据孤立(data isolation)、完整性问题(integ 阅读全文
posted @ 2017-11-08 12:15 丹尼尔奥利瓦 阅读(6445) 评论(0) 推荐(0) 编辑
摘要: 在安装ROS软件包的过程中遇到了以下报错: 因为GFW上面几个包都下载不下来,一般的解决办法是FQ,不过平时不怎么翻有点麻烦所以另辟蹊径了。 这几个包的地址跟ROS本身应该是无关的,我想起来之前ubuntu系统更新的时候也报过连接服务器超时包下载不下来的问题,大概是跟ubuntu系统更新有关的几个包 阅读全文
posted @ 2017-10-25 23:10 丹尼尔奥利瓦 阅读(2212) 评论(0) 推荐(0) 编辑
摘要: Problem-solving agent: one kind of goal-based agent using atomic representation. Problem formulation: the process of deciding what actions and states 阅读全文
posted @ 2017-10-23 22:47 丹尼尔奥利瓦 阅读(1502) 评论(0) 推荐(0) 编辑
摘要: Agent The agent function: abstract mathematical description, the table of the agent function is an external characterization of the agent. The agent p 阅读全文
posted @ 2017-10-22 23:06 丹尼尔奥利瓦 阅读(796) 评论(0) 推荐(0) 编辑
摘要: 初始化方法 初始化对象和设置初始值的过程通常可以合并到一个方法中,常见变成习惯是类中所有的初始化方法都以init开头。 包含很多方法和实例变量的类通常还有几个初始化方法。例如Foundation框架中的NSArray类包含6个额外的初始化方法: initWithArray:、initWithArra 阅读全文
posted @ 2017-10-16 13:38 丹尼尔奥利瓦 阅读(663) 评论(0) 推荐(0) 编辑
摘要: Objective-C代码的一般组成: @interface部分描述类和类的方法(声明) exp: 声明方法时,-表示为实例方法,+表示为类方法;如果有返回值则将返回类型放入-/+后的括号中;如果有接受参数,则方法名以冒号结束,后接内含参数类型的括号和参数名。 @implementation部分描述 阅读全文
posted @ 2017-10-13 14:54 丹尼尔奥利瓦 阅读(919) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页