引言: Learn about Diamondback at Borcon -- Michael SwindellBorCon 2004 上将发布Delphi的下一个大版本,目前代号为 Diamonback。
摘要:thinking in java第二版中166页的一段关于array初始化的代码:class a{int i;}
public class varargs{ static void f(object[] x){ for(int i=0;i<x.length;i++) system.out.println(x[i]); } public static void main(string[] args){ f(new object[]{ new inte......
摘要:拓扑排序的c语言的源代码:
# include # include # define m 30# define pr printf# define sc scanf
typedef struct arcnode{int adjvex; struct arcnode *nextarc;}arcnode,*anode;
typedef struct vexnode{int data; int indegree; struct arcnode *first......
Delphi的下一个版本:Diamondback(转)learn about diamondback at borcon -- michael swindell 【相关文章:
软件开发的科学与艺术--写好代码的十个秘】 【扩展阅读:
软件开发的科学与艺术--写好代码的十个秘】 【扩展信息:
关于树型结构的表,及排序的问题】 borcon 2004 上将发布delphi的下一个大版本,目前代号为 diamonback。
diamondback rumors -- michael swindell
some rumors i read in the ngs and blogs last night:
rumor: "i hope diamondback is more than just delphi 7 and delphi 8 combined"
fact: way more. if it were just 7 & 8 combined, we´d just call it "garter snake"
rumor: "diamondback will be two ides one for win32 and one for .net"
fact: diamondback will be a single ide :o)
rumor: "diamondback will include eco for asp.net, refactoring, and unit testing"
fact: thats just scratching the surface...
rumor: "danny, johnk, corbin, jim and allen are hotshots"
fact: heck ya
rumor: "diamondback will be the best development tool in the world"
...
下一页 摘要://mycompositeusing system;using system.collections;
//----------------------------------class fileelementabstract class cfileelement{ //fields protected string name; public cfileelement(string name) { this.name=name; }
public a......