莫相离 发表于 2015-1-18 11:34:52

了解下JAVA的庞大性实际

在ruby里才是一切皆对象。当然我不并不是很了解ruby,但是ruby确实是将语法简化得很好。
上面要先容的程序的前身是由LarryOBrien原创的一些代码,并以由CraigReynolds于1986年体例的“Boids”程序为基本,事先是为了演示庞大性实际的一个特别成绩,名为“凸显”(Emergence)。
这儿要到达的方针是经由过程为每种植物都划定少量复杂的划定规矩,从而传神地再现植物的群聚举动。每一个植物都能看到看到全部情况和情况中的其他植物,但它只与一系列四周的“群聚同伴”打交道。植物的挪动基于三个复杂的引诱举动:
(1)分开:制止当地群聚同伴过于拥堵。
(2)偏向:服从当地群聚同伴的广泛偏向。
(3)聚合:朝当地群聚同伴组的中央挪动。
更庞大的模子乃至能够包含停滞物的要素,植物能预知和制止与停滞抵触的才能,以是它们能环绕情况中的流动物体自在举动。除此之外,植物也大概有本人的特别方针,这大概会形成群体按特定的路径行进。为简化会商,制止停滞和方针征采的要素并未包含到这里创建的模子中。
只管盘算机自己对照大略,并且接纳的划定规矩也相称复杂,但了局看起来是实在的。也就是说,相称传神的举动从这个复杂的模子中“凸显”出来了。
程序以分解到一同的使用程序/程序片的情势供应:

//:FieldOBeasts.java
//Demonstrationofcomplexitytheory;simulates
//herdingbehaviorinanimals.Adaptedfrom
//aprogrambyLarryOBrienlobrien@msn.com
importjava.awt.*;
importjava.awt.event.*;
importjava.applet.*;
importjava.util.*;

classBeast{
int
x,y,//Screenposition
currentSpeed;//Pixelspersecond
floatcurrentDirection;//Radians
Colorcolor;//Fillcolor
FieldOBeastsfield;//WheretheBeastroams
staticfinalintGSIZE=10;//Graphicsize

publicBeast(FieldOBeastsf,intx,inty,
floatcD,intcS,Colorc){
field=f;
this.x=x;
this.y=y;
currentDirection=cD;
currentSpeed=cS;
color=c;
}
publicvoidstep(){
//Youmovebasedonthosewithinyoursight:
Vectorseen=field.beastListInSector(this);
//Ifyourenotoutinfront
if(seen.size()>0){
//Gatherdataonthoseyousee
inttotalSpeed=0;
floattotalBearing=0.0f;
floatdistanceToNearest=100000.0f;
BeastnearestBeast=
(Beast)seen.elementAt(0);
Enumeratione=seen.elements();
while(e.hasMoreElements()){
BeastaBeast=(Beast)e.nextElement();
totalSpeed+=aBeast.currentSpeed;
floatbearing=
aBeast.bearingFromPointAlongAxis(
x,y,currentDirection);
totalBearing+=bearing;
floatdistanceToBeast=
aBeast.distanceFromPoint(x,y);
if(distanceToBeast<distanceToNearest){
nearestBeast=aBeast;
distanceToNearest=distanceToBeast;
}
}
//Rule1:Matchaveragespeedofthose
//inthelist:
currentSpeed=totalSpeed/seen.size();
//Rule2:Movetowardstheperceived
//centerofgravityoftheherd:
currentDirection=
totalBearing/seen.size();
//Rule3:Maintainaminimumdistance
//fromthosearoundyou:
if(distanceToNearest<=
field.minimumDistance){
currentDirection=
nearestBeast.currentDirection;
currentSpeed=nearestBeast.currentSpeed;
if(currentSpeed>field.maxSpeed){
currentSpeed=field.maxSpeed;
}
}
}
else{//Youareinfront,soslowdown
currentSpeed=
(int)(currentSpeed*field.decayRate);
}
//Makethebeastmove:
x+=(int)(Math.cos(currentDirection)
*currentSpeed);
y+=(int)(Math.sin(currentDirection)
*currentSpeed);
x%=field.xExtent;
y%=field.yExtent;
if(x<0)
x+=field.xExtent;
if(y<0)
y+=field.yExtent;
}
publicfloatbearingFromPointAlongAxis(
intoriginX,intoriginY,floataxis){
//ReturnsbearingangleofthecurrentBeast
//intheworldcoordiantesystem
try{
doublebearingInRadians=
Math.atan(
(this.y-originY)/
(this.x-originX));
//Inversetanhastwosolutions,soyou
//havetocorrectforotherquarters:
if(x<originX){
if(y<originY){
bearingInRadians+=-(float)Math.PI;
}
else{
bearingInRadians=
(float)Math.PI-bearingInRadians;
}
}
//Justsubtracttheaxis(inradians):
return(float)(axis-bearingInRadians);
}catch(ArithmeticExceptionaE){
//Divideby0errorpossibleonthis
if(x>originX){
return0;
}
else
return(float)Math.PI;
}
}
publicfloatdistanceFromPoint(intx1,inty1){
return(float)Math.sqrt(
Math.pow(x1-x,2)+
Math.pow(y1-y,2));
}
publicPointposition(){
returnnewPoint(x,y);
}
//Beastsknowhowtodrawthemselves:
publicvoiddraw(Graphicsg){
g.setColor(color);
intdirectionInDegrees=(int)(
(currentDirection*360)/(2*Math.PI));
intstartAngle=directionInDegrees-
FieldOBeasts.halfFieldOfView;
intendAngle=90;
g.fillArc(x,y,GSIZE,GSIZE,
startAngle,endAngle);
}
}

publicclassFieldOBeastsextendsApplet
implementsRunnable{
privateVectorbeasts;
staticfloat
fieldOfView=
(float)(Math.PI/4),//Inradians
//Deceleration%persecond:
decayRate=1.0f,
minimumDistance=10f;//Inpixels
staticint
halfFieldOfView=(int)(
(fieldOfView*360)/(2*Math.PI)),
xExtent=0,
yExtent=0,
numBeasts=50,
maxSpeed=20;//Pixels/second
booleanuniqueColors=true;
ThreadthisThread;
intdelay=25;
publicvoidinit(){
if(xExtent==0&&yExtent==0){
xExtent=Integer.parseInt(
getParameter("xExtent"));
yExtent=Integer.parseInt(
getParameter("yExtent"));
}
beasts=
makeBeastVector(numBeasts,uniqueColors);
//Nowstartthebeastsa-rovin:
thisThread=newThread(this);
thisThread.start();
}
publicvoidrun(){
while(true){
for(inti=0;i<beasts.size();i++){
Beastb=(Beast)beasts.elementAt(i);
b.step();
}
try{
thisThread.sleep(delay);
}catch(InterruptedExceptionex){}
repaint();//Otherwiseitwontupdate
}
}
VectormakeBeastVector(
intquantity,booleanuniqueColors){
VectornewBeasts=newVector();
Randomgenerator=newRandom();
//UsedonlyifuniqueColorsison:
doublecubeRootOfBeastNumber=
Math.pow((double)numBeasts,1.0/3.0);
floatcolorCubeStepSize=
(float)(1.0/cubeRootOfBeastNumber);
floatr=0.0f;
floatg=0.0f;
floatb=0.0f;
for(inti=0;i<quantity;i++){
intx=
(int)(generator.nextFloat()*xExtent);
if(x>xExtent-Beast.GSIZE)
x-=Beast.GSIZE;
inty=
(int)(generator.nextFloat()*yExtent);
if(y>yExtent-Beast.GSIZE)
y-=Beast.GSIZE;
floatdirection=(float)(
generator.nextFloat()*2*Math.PI);
intspeed=(int)(
generator.nextFloat()*(float)maxSpeed);
if(uniqueColors){
r+=colorCubeStepSize;
if(r>1.0){
r-=1.0f;
g+=colorCubeStepSize;
if(g>1.0){
g-=1.0f;
b+=colorCubeStepSize;
if(b>1.0)
b-=1.0f;
}
}
}
newBeasts.addElement(
newBeast(this,x,y,direction,speed,
newColor(r,g,b)));
}
returnnewBeasts;
}
publicVectorbeastListInSector(Beastviewer){
Vectoroutput=newVector();
Enumeratione=beasts.elements();
BeastaBeast=(Beast)beasts.elementAt(0);
intcounter=0;
while(e.hasMoreElements()){
aBeast=(Beast)e.nextElement();
if(aBeast!=viewer){
Pointp=aBeast.position();
Pointv=viewer.position();
floatbearing=
aBeast.bearingFromPointAlongAxis(
v.x,v.y,viewer.currentDirection);
if(Math.abs(bearing)<fieldOfView/2)
output.addElement(aBeast);
}
}
returnoutput;
}
publicvoidpaint(Graphicsg){
Enumeratione=beasts.elements();
while(e.hasMoreElements()){
((Beast)e.nextElement()).draw(g);
}
}
publicstaticvoidmain(String[]args){
FieldOBeastsfield=newFieldOBeasts();
field.xExtent=640;
field.yExtent=480;
Frameframe=newFrame("FieldOBeasts");
//Optionallyuseacommand-lineargument
//forthesleeptime:
if(args.length>=1)
field.delay=Integer.parseInt(args);
frame.addWindowListener(
newWindowAdapter(){
publicvoidwindowClosing(WindowEvente){
System.exit(0);
}
});
frame.add(field,BorderLayout.CENTER);
frame.setSize(640,480);
field.init();
field.start();
frame.setVisible(true);
}
}///:~只管这并不是对CraigReynold的“Boids”例子中的举动完善重现,但它却展示出了本人独占的诱人以外。经由过程对数字举行调剂,便可举行周全的修正。至于与这类群聚举动有关的更多的情形,人人能够会见CraigReynold的主页——在谁人中央,乃至还供应了Boids一个公然的3D展现版本:
http://www.hmt.com/cwr/boids.html
为了将这个程序作为一个程序片运转,请在HTML文件中设置下述程序片标记:

<applet
code=FieldOBeasts
width=640
height=480>
<paramname=xExtentvalue="640">
<paramname=yExtentvalue="480">
</applet>
你通过从书的数量和开发周期及运行速度来证明:net网页编程和ruby要比java简单。

乐观 发表于 2015-1-21 10:29:35

一直感觉JAVA很大,很杂,找不到学习方向,前两天在网上找到了这篇文章,感觉不错,给没有方向的我指了一个方向,先不管对不对,做下来再说。

老尸 发表于 2015-1-30 15:07:06

有时间再研究一下MVC结构(把Model-View-Control分离开的设计思想)

精灵巫婆 发表于 2015-1-31 09:05:21

至于JDBC,就不用我多说了,你如果用java编过存取数据库的程序,就应该很熟悉。还有,如果你要用Java编发送电子邮件的程序,你就得看看Javamail 了。

灵魂腐蚀 发表于 2015-2-6 18:54:25

一直感觉JAVA很大,很杂,找不到学习方向,前两天在网上找到了这篇文章,感觉不错,给没有方向的我指了一个方向,先不管对不对,做下来再说。

莫相离 发表于 2015-2-12 06:10:54

Sun公司看见Oak在互联网上应用的前景,于是改造了Oak,于1995年5月以Java的名称正式发布。Java伴随着互联网的迅猛发展而发展,逐渐成为重要的网络编程语言。

蒙在股里 发表于 2015-3-2 22:28:31

《JAVA语言程序设计》或《JAVA从入门到精通》这两本书开始学,等你编程有感觉的时候也可以回看一下。《JAVA读书笔记》这本书,因为讲的代码很多,也很容易看懂,涉及到面也到位。是你学习技术巩固的好书,学完后就看看《JAVA编程思想》这本书,找找一个自己写的代码跟书上的代码有什么不一样。

再现理想 发表于 2015-3-11 07:07:07

让你能够真正掌握接口或抽象类的应用,从而在原来的Java语言基础上跃进一步,更重要的是,设计模式反复向你强调一个宗旨:要让你的程序尽可能的可重用。

飘飘悠悠 发表于 2015-3-17 20:53:44

是一种简化的C++语言 是一种安全的语言,具有阻绝计算机病毒传输的功能

愤怒的大鸟 发表于 2015-3-19 10:37:30

如果要向java web方向发展也要吧看看《Java web从入门到精通》学完再到《Struts2.0入门到精通》这样你差不多就把代码给学完了。有兴趣可以看一些设计模块和框架的包等等。

飘灵儿 发表于 2015-3-27 17:21:57

Java是一种计算机编程语言,拥有跨平台、面向对java

第二个灵魂 发表于 2015-4-3 04:22:28

在全球云计算和移动互联网的产业环境下,Java更具备了显著优势和广阔前景。

再见西城 发表于 2015-4-4 16:14:03

我大二,Java也只学了一年,觉得还是看thinking in java好,有能力的话看英文原版(中文版翻的不怎么好),还能提高英文文档阅读能力。

因胸联盟 发表于 2015-4-13 21:33:13

还好,SUN提供了Javabean可以把你的JSP中的 Java代码封装起来,便于调用也便于重用。

深爱那片海 发表于 2015-4-20 19:08:03

其实说这种话的人就如当年小日本号称“三个月拿下中国”一样大言不惭。不是Tomjava泼你冷水,你现在只是学到了Java的骨架,却还没有学到Java的精髓。接下来你得研究设计模式了。

活着的死人 发表于 2015-4-23 09:55:02

是一种突破用户端机器环境和CPU

只想知道 发表于 2015-4-26 20:10:32

那么我书也看了,程序也做了,别人问我的问题我都能解决了,是不是就成为高手了呢?当然没那么简单,这只是万里长征走完了第一步。不信?那你出去接一个项目,你知道怎么下手吗,你知道怎么设计吗,你知道怎么组织人员进行开发吗?你现在脑子里除了一些散乱的代码之外,可能再没有别的东西了吧!

若天明 发表于 2015-4-27 20:12:41

还好,SUN提供了Javabean可以把你的JSP中的 Java代码封装起来,便于调用也便于重用。

爱飞 发表于 2015-5-4 11:07:49

Java 编程语言的风格十分接近C、C++语言。

海妖 发表于 2015-6-4 18:37:00

让你能够真正掌握接口或抽象类的应用,从而在原来的Java语言基础上跃进一步,更重要的是,设计模式反复向你强调一个宗旨:要让你的程序尽可能的可重用。
页: [1]
查看完整版本: 了解下JAVA的庞大性实际