[置顶] Delphi 和 C++Builder 2014年及以后技术路线图

摘要: RAD Studio, Delphi 和 C++Builder 2014年及以后技术路线图By: Embarcadero News内容源自Embarcadero新闻组,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.comAbstract: Features and Technologies Expected in 2014 and beyond摘要:2014年以后的功能和技术概览Disclaimer: The information included in this roadmap does not constit 阅读全文

posted @ 2014-03-08 00:33 唐科 阅读(1732) 评论(3) 推荐(1) 编辑

2016年9月5日

解决java.io.IOException: Cannot run program "cygpath": CreateProcess error=2, 系统找不到指定的文件 的错误

摘要: 一、外部环境: 系统环境:Windows 8 磁盘分区:只有C盘 开发环境:IntelliJ IDEA Community Edition 2016.1.3(64) 执行代码:rdd.saveAsTextFile(this.resultPath); 二、错误信息: 错误提示1: 16/09/05 1 阅读全文

posted @ 2016-09-05 15:05 唐科 阅读(4681) 评论(0) 推荐(0) 编辑

2014年2月26日

Delphi XE5教程12:注释和编译器指示字

摘要: 内容源自Delphi XE5 UPDATE 2官方帮助《Delphi Reference》,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.com3 Comments and Compiler Directives3注释和编译器指示字Comments are ignored by the compiler, except when they function as separators (delimiting adjacent tokens) or compiler directives.注释将被编译器忽略,除非它们 阅读全文

posted @ 2014-02-26 21:54 唐科 阅读(969) 评论(0) 推荐(1) 编辑

Delphi XE5教程11:Tokens

摘要: 内容源自Delphi XE5 UPDATE 2官方帮助《Delphi Reference》,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.com2 Tokens 2 TokensOn the simplest level, a program is a sequence of tokens delimited by separators. A token is the smallest meaningful unit of text in a program. A separator is either a bla 阅读全文

posted @ 2014-02-26 21:26 唐科 阅读(1531) 评论(0) 推荐(0) 编辑

2014年2月19日

Delphi XE5教程10:Delphi字符集

摘要: 内容源自Delphi XE5 UPDATE 2官方帮助《Delphi Reference》,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.com1 The Delphi Character Set1 Delphi字符集The Delphi language uses the Unicode character encoding for its character set, including alphabetic and alphanumeric Unicode characters and the undersc 阅读全文

posted @ 2014-02-19 21:13 唐科 阅读(1416) 评论(1) 推荐(1) 编辑

Delphi XE5教程9:基本语法元素

摘要: 内容源自Delphi XE5 UPDATE 2官方帮助《Delphi Reference》,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.comFundamental Syntactic Elements第三章 基本语法元素Fundamental syntactic elements, called tokens, combine to form expressions, declarations, and statements. A statement describes an algorithmic actio 阅读全文

posted @ 2014-02-19 07:07 唐科 阅读(900) 评论(0) 推荐(1) 编辑

2014年2月18日

Delphi XE5教程8:使用Delphi命名空间

摘要: // Project file declarations...//项目文件声明…program MyCompany.ProjectX.ProgramY; // Unit source file declaration...//单元源文件声明unit MyCompany.ProjectX.ProgramY.MyUnit1;内容源自Delphi XE5 UPDATE 2官方帮助《Delphi Reference》,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.comUsing Namespaces with Delph 阅读全文

posted @ 2014-02-18 22:00 唐科 阅读(1451) 评论(0) 推荐(1) 编辑

2014年2月17日

Delphi XE5教程7:单元引用和uses 子句

摘要: 内容源自Delphi XE5 UPDATE 2官方帮助《Delphi Reference》,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.com3 Unit References and the Uses Clause 3 单元引用和uses 子句A uses clause lists units used by the program, library, or unit in which the clause appears. A uses clause can occur inuses 子句列出了被程序、库或单 阅读全文

posted @ 2014-02-17 21:25 唐科 阅读(2654) 评论(0) 推荐(1) 编辑

2014年2月15日

Delphi XE5教程6:单元的结构和语法

摘要: 内容源自Delphi XE5 UPDATE 2官方帮助《Delphi Reference》,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.com2 Unit Structure and Syntax 2 单元的结构和语法A unit consists of types (including classes), constants, variables, and routines (functions and procedures). Each unit is defined in its own source (. 阅读全文

posted @ 2014-02-15 22:15 唐科 阅读(1107) 评论(0) 推荐(1) 编辑

2014年2月14日

Delphi XE5教程5:程序的结构和语法

摘要: 内容源自Delphi XE5 UPDATE 2官方帮助《Delphi Reference》,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.com1 Program Structure and Syntax 1程序的结构和语法A complete, executable Delphi application consists of multiple unit modules, all tied together by a single source code module called a project file. 阅读全文

posted @ 2014-02-14 22:42 唐科 阅读(1153) 评论(0) 推荐(1) 编辑

导航