- 浏览: 184895 次
- 性别:
- 来自: 哈尔滨
文章分类
最新评论
-
tongzelong:
[b][i][flash=200,200][url][img] ...
Postgresql中的分组函数(group by 和 having) -
csniper:
console.assert(foo_show()=='win ...
js bind 函数 使用闭包保存执行上下文
1、as原型机制使用 prototype 为原型类添加修改成员。
2、AS3的继承机制-原型继承
3、命名空间
namespace aaaa; aaaa function bbbb(){}
用法
aaaa::bbbb();
或者(不推荐)
use namespace aaaa; bbbb();
4、访问权限修饰符
类的访问权限 dynamic:动态的 final internal:默认值,同包内 public 成员的访问权限: internal private:仅本类,子类不可见 protected:子类可见 public:任何位置可见 static:静态的,属于类本身,不属于任何实例 UserDefinedNamespace:用户自定义的命名空间
5、使用override关键字覆盖基类的getter、setter存取器
6、闭包方法
private function onLoaderComplete(i:int):Function { var fun:Function=function(e:Event) { imgArr[i]=e.target.content; if(i<urlArr.length-1) { i++; imgLoaded(i); }else { dispatchEvent(new Event(LoadImg.COMPLETE)); } }; return fun; }
7、super仅表示最近的父类。
8、多态(不曾忘记张老师的话:有继承有重写还有父类的引用指向子类的对象,这就是多态)
charCodeAt(); //获取某个字符的编码 indexOf(); //从左开始搜索 lastIndexOf(); //从右开始搜索 substr(); //第一个参数,起始位置;第二个参数,返回字符串的长度 substring(); //第一个参数,起始位置;第二个参数,字符串结尾的字符位置 slice(); split(); //拆分字符串 replace(); //替换字符串 /定义基类class0 public class Class_0 { public function alert():void{ Alert.show('class 0') } } //定义子类class1 public class Class_1 extends Class_0 { public override function alert():void{ Alert.show('class 1') } } //定义子类class2 public class Class_2 extends Class_1 { public override function alert():void{ Alert.show('class 2') } } //实现多态 var test_class1:Class_0 = new Class_1(); test_class1.alert(); //output: class 1 var test_class2:Class_1 = new Class_2(); test_class2.alert(); //output: class 2 var test_class3:Class_2 = new Class_2(); test_class3.alert(); //output: class 2
9、 dynamic类同时具有traits对象和hash表
当属性不能在traits对象中找到的时候就会检索hash表来寻找,这是动态类的特点!
10、使用 in 关键字进行成员检查。in亦可检查数组中是否包含指定索引的元素。
//成员检查 package com.tests { public dynamic class Person { public pname:String; } } import com.tests.Person; var dali:Person = new Person(); trace("sb" in dali); //false dali.sb = "sb2"; trace("sb" in dali); //true dali.aaa = 'bbb'; var str:String = 'aaa'; trace(str in dali); //true //数组检查 var arr:Array = [12, 31, 34]; trace(2 in arr); //true trace(20 in arr); //false arr[20] = 14; trace(20 in arr); //true
11、delete成员删除(直接引入10中的Person类)
delete 不能删除非动态成员。 访问删除的后的属性将得到defined。 使用in关键字检查删除后的成员依然为true。 delete 删除不存在的成员返回false。
12、使用ByteArray深度复制数组。
private var testArr:Array = [1,3,5,7,9]; private var testArr2:Array; private function copyArr():void{ var byte:ByteArray = new ByteArray(); byte.writeObject(testArr); byte.position = 0; testArr2 = byte.readObject(); testArr[0] = 0; trace(testArr); trace(testArr2); } copyArr(); trace(testArr); //0,3,5,7,9 trace(testArr2); //1,3,5,7,9
13、字符串操作
charCodeAt(); //获取某个字符的编码 indexOf(); //从左开始搜索 lastIndexOf(); //从右开始搜索 substr(); //第一个参数,起始位置;第二个参数,返回字符串的长度 substring(); //第一个参数,起始位置;第二个参数,字符串结尾的字符位置 slice(); split(); //拆分字符串 replace(); //替换字符串
14、remove显示对象
使用removeChild()或者removeChildAt()方法后,只能将对象从显示容器中删除,要彻底删除内存占用还需再用delete才能彻底清除
15、Timer定时器
var timer:Timer = new Timer(2000,0); timer.addEventListener("timer",function fun():void{ //自定义触发函数 }); timer.start()
16、对象的旋转、斜切
<?xml version="1.0" encoding="utf-8"?> <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" creationComplete="init();init2();init3();init4()"> <!-- 旋转 --> <mx:Script> <![CDATA[ private function init():void{ //替换原有matrix对象 var myMatrix:Matrix = img.transform.matrix; //计算图像的中心点 var tempx:int, tempy:int; tempx = img.x + img.width/2; tempy = img.y + img.height/2; //启用定时器,连续旋转 var timer:Timer = new Timer(1); timer.addEventListener("timer",function img_click():void{ //将图像中心移动到坐标原点 myMatrix.translate(-tempx, -tempy); //将对象逆时针旋转1度 myMatrix.rotate(2 * Math.PI * (-1 / 360)); //将图像中心移回图像原中心点 myMatrix.translate(tempx, tempy); //应用变换到显示对象 img.transform.matrix = myMatrix; }); timer.start() //为图像添加点击事件 img.addEventListener(MouseEvent.CLICK,function img_click():void{ timer.running ? timer.stop() : timer.start(); }); } ]]> </mx:Script> <mx:Panel width="100%" height="100%" title="对象旋转" backgroundColor="black"> <mx:Canvas id="main_box" width="100%" height="100%"> <!-- 两条辅线 HRule 和 VRule --> <mx:HRule y="{main_box.height/2}" width="100%"/> <mx:VRule x="{main_box.width/2}" height="100%"/> <mx:Image id="img" source="@Embed(source='assets/test.png')" x="{main_box.width/2 - img.width/2}" y="{main_box.height/2 - img.height/2}"/> </mx:Canvas> </mx:Panel> <!-- 斜切 --> <mx:Script> <![CDATA[ import mx.controls.Alert; private function init2():void{ //替换原有matrix对象 var myMatrix:Matrix = img2.transform.matrix; //临时变量,用于存储斜切大小和方向 var temp:Number = 0; //标记变量,决定是向左、向右或 向上、向下 var flag:Boolean = true; //启用定时器,连续斜切 var timer:Timer = new Timer(5); timer.addEventListener("timer",function img2_click():void{ //将对象按照水平向左的方向斜切,b为垂直方向 if (temp >= 0.5){ flag = true; }else if (temp <= -0.5){ flag = false; } if (flag){ temp -= 0.05; }else{ temp += 0.05; } myMatrix.c = Math.tan(temp); //myMatrix.b = Math.tan(temp); //应用变换到显示对象 img2.transform.matrix = myMatrix; }); timer.start() //为图像添加点击事件 img2.addEventListener(MouseEvent.CLICK,function img2_click():void{ timer.running ? timer.stop() : timer.start(); }); } ]]> </mx:Script> <mx:Panel width="100%" height="100%" title="斜切变形" backgroundColor="black"> <mx:Canvas id="main_box2" width="100%" height="100%"> <!-- 两条辅线 HRule 和 VRule --> <mx:HRule y="{main_box2.height/2}" width="100%"/> <mx:VRule x="{main_box2.width/2}" height="100%"/> <mx:Image id="img2" source="@Embed(source='assets/test.png')" x="{main_box2.width/2 - img2.width/2}" y="{main_box2.height/2 - img2.height/2}"/> </mx:Canvas> </mx:Panel> <!-- 斜切后旋转 --> <mx:Script> <![CDATA[ import mx.controls.Alert; private function init3():void{ //替换原有matrix对象 var myMatrix:Matrix = img3.transform.matrix; //计算图像的中心点 var tempx:int, tempy:int; tempx = img3.x + img3.width/2; tempy = img3.y + img3.height/2; //将图像移到屏幕原点 myMatrix.translate(-tempx, -tempy); //创建斜切matrix对象 var skewMatrix:Matrix = new Matrix(); skewMatrix.b = Math.tan(-0.5); skewMatrix.c = Math.tan(-0.5); //联合矩阵 myMatrix.concat(skewMatrix); //将图像移回原中心点 myMatrix.translate(tempx, tempy); //启用定时器,连续旋转 var timer:Timer = new Timer(5); timer.addEventListener("timer",function img_click():void{ //将图像中心移动到坐标原点 myMatrix.translate(-tempx, -tempy); //将对象逆时针旋转1度 myMatrix.rotate(2 * Math.PI * (-1 / 360)); //将图像中心移回图像原中心点 myMatrix.translate(tempx, tempy); //应用变换到显示对象 img3.transform.matrix = myMatrix; }); timer.start() //为图像添加点击事件 img3.addEventListener(MouseEvent.CLICK,function img3_click():void{ timer.running ? timer.stop() : timer.start(); }); } ]]> </mx:Script> <mx:Panel width="100%" height="100%" title="斜切后旋转" backgroundColor="black"> <mx:Canvas id="main_box3" width="100%" height="100%"> <!-- 两条辅线 HRule 和 VRule --> <mx:HRule y="{main_box3.height/2}" width="100%"/> <mx:VRule x="{main_box3.width/2}" height="100%"/> <mx:Image id="img3" source="@Embed(source='assets/test.png')" x="{main_box3.width/2 - img3.width/2}" y="{main_box3.height/2 - img3.height/2}"/> </mx:Canvas> </mx:Panel> <!-- 缩放 --> <mx:Script> <![CDATA[ import mx.controls.Alert; private function init4():void{ //替换原有matrix对象 var myMatrix:Matrix = img4.transform.matrix; //计算图像的中心点 var tempx:int, tempy:int; tempx = img4.x + img4.width/2; tempy = img4.y + img4.height/2; //临时变量,用户存储缩放大小 var temp:Number = 0; //标记变量,决定放大或缩小 var flag:Boolean = true; //启用定时器,连续缩放 var timer:Timer = new Timer(500); timer.addEventListener("timer",function img4_click():void{ //将图像移到屏幕原点 myMatrix.translate(-tempx, -tempy); if (temp >= 0.9){ flag = true; }else if (temp <= -0.9){ flag = false; } if (flag){ temp -= 0.01; }else{ temp += 0.01; } myMatrix.scale(temp, temp); //myMatrix.b = Math.tan(temp); myMatrix.translate(tempx, tempy); //应用变换到显示对象 img4.transform.matrix = myMatrix; }); timer.start() //为图像添加点击事件 img4.addEventListener(MouseEvent.CLICK,function img4_click():void{ timer.running ? timer.stop() : timer.start(); }); } ]]> </mx:Script> <mx:Panel width="100%" height="100%" title="对象缩放" backgroundColor="black"> <mx:Canvas id="main_box4" width="100%" height="100%"> <!-- 两条辅线 HRule 和 VRule --> <mx:HRule y="{main_box4.height/2}" width="100%"/> <mx:VRule x="{main_box4.width/2}" height="100%"/> <mx:Image id="img4" source="@Embed(source='assets/test.png')" x="{main_box4.width/2 - img4.width/2}" y="{main_box4.height/2 - img4.height/2}"/> </mx:Canvas> </mx:Panel> </mx:HBox>
17、线性运动
<?xml version="1.0" encoding="utf-8"?> <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%"> <!-- 直线运动 --> <mx:Script> <![CDATA[ [Bindable]private var offset:Number; private function init1():void{ var point_arr:Array = new Array(3); offset = -hbox_01.width/2 + 2.5; point_arr[0] = new Point(150,50); point_arr[1] = new Point(250,450); point_arr[2] = new Point(50,450); var timer:Timer = new Timer(10,600); timer.addEventListener("timer",function fun():void{ var flag:int = timer.currentCount; if (flag <= 200){ hbox_01.x += ((point_arr[1].x - point_arr[0].x)/200); hbox_01.y += ((point_arr[1].y - point_arr[0].y)/200); }else if (flag > 200 && flag <=400){ hbox_01.x += ((point_arr[2].x - point_arr[1].x)/200); hbox_01.y += ((point_arr[2].y - point_arr[1].y)/200); }else if (flag > 400 && flag <=600){ hbox_01.x += ((point_arr[0].x - point_arr[2].x)/200); hbox_01.y += ((point_arr[0].y - point_arr[2].y)/200); } }); timer.addEventListener(TimerEvent.TIMER_COMPLETE,function comp():void{ timer.reset(); timer.start(); }); timer.start(); } ]]> </mx:Script> <mx:Panel id="panel_01" title="直线运动" width="100%" height="100%" creationComplete="init1()" verticalGap="10" horizontalAlign="center" verticalAlign="middle"> <mx:Canvas width="100%" height="100%"> <mx:HBox width="5" height="5" borderStyle="solid" cornerRadius="50" backgroundColor="black" x="150" y="50"/> <mx:HBox width="5" height="5" borderStyle="solid" cornerRadius="50" backgroundColor="black" x="250" y="450"/> <mx:HBox width="5" height="5" borderStyle="solid" cornerRadius="50" backgroundColor="black" x="50" y="450"/> <mx:HBox x="{150 + offset}" y="{50 + offset}" id="hbox_01" width="30" height="30" borderStyle="solid" cornerRadius="50" backgroundColor="black" backgroundAlpha="0.7"/> </mx:Canvas> </mx:Panel> <!-- 匀速直线运动(时长法) --> <mx:Script> <![CDATA[ [Bindable]private var offset2:Number; private function init2():void{ var point_arr:Array = new Array(3); offset2 = -hbox_02.width/2 + 2.5; point_arr[0] = new Point(150,50); point_arr[1] = new Point(250,450); point_arr[2] = new Point(50,450); var timer:Timer = new Timer(50,150); //计算每两点之间的距离 var dist_a2b:Number = dist(point_arr[0],point_arr[1]); var dist_b2c:Number = dist(point_arr[1],point_arr[2]); var dist_c2a:Number = dist(point_arr[2],point_arr[0]); //运动总长 var total_dist:Number = dist_a2b + dist_b2c + dist_c2a; //计算每两点之间运动一次的位移大小 var rect_a2b:Number = Math.round(dist_a2b / total_dist * timer.repeatCount); var rect_b2c:Number = Math.round(dist_b2c / total_dist * timer.repeatCount); var rect_c2a:Number = timer.repeatCount - rect_a2b - rect_b2c; //var rect_c2a:Number = Math.round(dist_c2a / total_dist * timer.repeatCount); timer.addEventListener("timer",function fun():void{ var flag:int = timer.currentCount; if (flag <= rect_a2b){ hbox_02.x += ((point_arr[1].x - point_arr[0].x)/rect_a2b); hbox_02.y += ((point_arr[1].y - point_arr[0].y)/rect_a2b); }else if (flag > rect_a2b && flag <=rect_a2b + rect_b2c){ hbox_02.x += ((point_arr[2].x - point_arr[1].x)/rect_b2c); hbox_02.y += ((point_arr[2].y - point_arr[1].y)/rect_b2c); }else if (flag > rect_a2b + rect_b2c && flag <= rect_a2b + rect_b2c + rect_c2a){ hbox_02.x += ((point_arr[0].x - point_arr[2].x)/rect_c2a); hbox_02.y += ((point_arr[0].y - point_arr[2].y)/rect_c2a); } }); timer.addEventListener(TimerEvent.TIMER_COMPLETE,function comp():void{ hbox_02.x = 150 + offset2; hbox_02.y = 50 + offset2; timer.reset(); timer.start(); }); timer.start(); //计算两点之间的距离 function dist(p1:Point, p2:Point):Number{ return Math.sqrt( ( Math.pow((p1.x-p2.x),2) + Math.pow((p1.y-p2.y),2) ) ); } } ]]> </mx:Script> <mx:Panel id="panel_02" title="匀速直线运动(时长法)" width="100%" height="100%" creationComplete="init2()" verticalGap="10" horizontalAlign="center" verticalAlign="middle"> <mx:Canvas width="100%" height="100%"> <mx:HBox width="5" height="5" borderStyle="solid" cornerRadius="50" backgroundColor="black" x="150" y="50"/> <mx:HBox width="5" height="5" borderStyle="solid" cornerRadius="50" backgroundColor="black" x="250" y="450"/> <mx:HBox width="5" height="5" borderStyle="solid" cornerRadius="50" backgroundColor="black" x="50" y="450"/> <mx:HBox x="{150 + offset2}" y="{50 + offset2}" id="hbox_02" width="30" height="30" borderStyle="solid" cornerRadius="50" backgroundColor="black" backgroundAlpha="0.7"/> </mx:Canvas> </mx:Panel> <!-- 匀速直线运动(速度法) --> <mx:Script> <![CDATA[ [Bindable]private var offset3:Number; private function init3():void{ var timer:Timer = new Timer(50,150); //创建三个point对象 var point_arr:Array = new Array(3); offset3 = -hbox_03.width/2 + 2.5; point_arr[0] = new Point(150,50); point_arr[1] = new Point(250,450); point_arr[2] = new Point(50,450); //计算每两点之间的距离 var arr_dist:Array = new Array(4); arr_dist[1] = dist(point_arr[0],point_arr[1]); arr_dist[2] = dist(point_arr[1],point_arr[2]); arr_dist[3] = dist(point_arr[2],point_arr[0]); //运动总长 arr_dist[0] = arr_dist[1] + arr_dist[2] + arr_dist[3]; //计算移动速度 var speed:Number = arr_dist[0]/timer.repeatCount; //已过行程 var past:Number = 0; //每阶段x轴和y轴位移数组 var setpx:Array = new Array(3); var setpy:Array = new Array(3); //第一阶段x,y位移大小 setpx[0] = (point_arr[1].x - point_arr[0].x)/arr_dist[1]*speed; setpy[0] = (point_arr[1].y - point_arr[0].y)/arr_dist[1]*speed; //第二阶段x,y位移大小 setpx[1] = (point_arr[2].x - point_arr[1].x)/arr_dist[2]*speed; setpy[1] = (point_arr[2].y - point_arr[1].y)/arr_dist[2]*speed; //第三阶段x,y位移大小 setpx[2] = (point_arr[0].x - point_arr[2].x)/arr_dist[3]*speed; setpy[2] = (point_arr[0].y - point_arr[2].y)/arr_dist[3]*speed; timer.addEventListener("timer",function fun():void{ var r:Number; if (past <= arr_dist[1]){ r = 0; }else if (past > arr_dist[1] && past <= (arr_dist[1] + arr_dist[2])){ r = 1; }else if (past > (arr_dist[1] + arr_dist[2]) && past <= arr_dist[0]){ r = 2; } hbox_03.x += setpx[r]; hbox_03.y += setpy[r]; past += speed; }); timer.addEventListener(TimerEvent.TIMER_COMPLETE,function comp():void{ hbox_03.x = 150 + offset3; hbox_03.y = 50 + offset3; timer.reset(); past = 0; timer.start(); }); timer.start(); //计算两点之间的距离 function dist(p1:Point, p2:Point):Number{ return Math.sqrt( ( Math.pow((p1.x-p2.x),2) + Math.pow((p1.y-p2.y),2) ) ); } } ]]> </mx:Script> <mx:Panel id="panel_03" title="匀速直线运动(速度法)" width="100%" height="100%" creationComplete="init3()" verticalGap="10" horizontalAlign="center" verticalAlign="middle"> <mx:Canvas width="100%" height="100%"> <mx:HBox width="5" height="5" borderStyle="solid" cornerRadius="50" backgroundColor="black" x="150" y="50"/> <mx:HBox width="5" height="5" borderStyle="solid" cornerRadius="50" backgroundColor="black" x="250" y="450"/> <mx:HBox width="5" height="5" borderStyle="solid" cornerRadius="50" backgroundColor="black" x="50" y="450"/> <mx:HBox x="{150 + offset3}" y="{50 + offset3}" id="hbox_03" width="30" height="30" borderStyle="solid" cornerRadius="50" backgroundColor="black" backgroundAlpha="0.7"/> </mx:Canvas> </mx:Panel> </mx:HBox>
18、矩阵运算
点A旋转S角度后B点坐标计算:
计算步骤: OA = a/cos(β) = b/sin(β) cos(s + β) = m / OA sin(s + β) = n / OA m = OA * cos(s + β) = OA * (cos(s)*cos(β) - sin(s)*sin(β)) = a*cos(s) - b*sin(s) n = OA * sin(s + β) = OA * (sin(s)*cos(β) + cos(s)*sin(β)) = a*sin(s) + b*cos(s)
发表评论
-
Flash Player 10 使用绘图API
2012-06-15 16:11 1100转自:http://sjkgxf7191.iteye.c ... -
Flex与 JS 交互通信方法
2012-05-20 11:35 869http://www.gnria.com/flex/flex- ... -
Flex中阻止默认事件的派发
2011-11-23 10:37 1926<?xml version="1.0&q ... -
Flex3的国际化支持
2011-11-10 19:25 1062Flex的国际化支持 Author:lvmy Ema ... -
《Flash ActionScript 3.0 动画教程》自学笔记
2011-06-14 10:29 1112第 1 章:基本动画概念 略 第 ... -
Flex 元标签列表
2011-05-09 15:12 926转载:http://phpz.org/archiv ... -
Flex 4.5 SDK 新特性
2011-05-04 10:12 1687转载:http://www.adobe.com/cn/de ... -
Flex使用swfloader引入swf后导致页面失真
2011-04-11 09:58 1857最近在项目中需要引入一个由gif转换过来的swf动画文件,引入 ... -
flash 开源项目
2011-03-15 11:33 945flash 开源项目 转载 ... -
flex 开源项目组件大全
2011-03-15 11:32 1819flex 开源项目组件大全 转载自:http: ... -
[转]推荐几个Adobe Flex Builder 3的插件(代码格式化和fms服务器通讯文件(main.asc)编写)
2011-01-14 10:50 939本人转载自:http://www.cnblogs.com/ai ... -
[转载]我对IList、ICollectionView与IViewCursor的一点理解
2011-01-12 09:57 1526若需转载本站原创文章,请注明: 转载自zrong's Blog ... -
Flex 获取本地文件的路径
2010-10-25 17:10 32761、Flex代码部分: <?xml version= ... -
[转载]Flex自定义Alert窗口显示位置
2010-10-25 16:06 1050原创作者: Abdul Qabiz 。翻译整理:一路风尘 ...
相关推荐
AS400 自学笔记集锦 AS400学习笔记(V1.2) 自学使用的400操作命令集锦
[STM32自学笔记].蒙博宇
通过“STM32自学笔记”这样的资料,你可以系统地学习STM32的基础知识和实践技巧,逐步掌握单片机开发的全貌。在实践中,不断实验和调试,加深对外设的理解,是提升技能的关键。同时,参与社区交流,参考他人的项目,...
资源名称:STM32自学笔记内容简介:《STM32自学笔记》以新颖的思路、简单的逻辑、简洁的语言来阐述作者初遇STM32以来的种种认识,书中多处内容都是由作者从STM32初学时的实践中总结而来。《STM32自学笔记》主要介绍...
AS400学习笔记整理 AS400是IBM开发的一种大型机系统,主要用于企业级应用系统的开发和部署。作为AS400初学者,学习AS400的命令和操作是非常重要的,本笔记整理了AS400学习笔记的主要内容,包括命令记录、示例解析、...
《STM32自学笔记》随书共享资料包含了学习STM32开发所必需的各种资源,包括书籍配套的光盘资料和STM32的3.5数据库及使用手册。 首先,STM32的3.5数据库可能是关于STM32的固件库或HAL库的更新版本,这些库为开发者...
《AVR单片机自学笔记》以ATmega128单片机为核心,结合作者多年教学和指导大学生电子设计竞赛的经验编写而成。 《AVR单片机自学笔记》继续保持《51单片机自学笔记》一书的写作风格。以任务为中心,并在书中配有多幅...
STM8单片机自学笔记-范红刚著, 单片机自学系列的STM8自学教程,, 推荐给大家, 这个系列我一直在收集. 清爽版本
本资源“STM32自学笔记 随书资料”是一份全面的学习STM32开发的参考资料,旨在帮助初学者快速入门并深入理解STM32的工作原理和编程技巧。 一、STM32架构与特性 STM32系列涵盖了多种型号,主要基于Cortex-M0、M3、M4...
stm32自学教程。适合开发者,学生,单片机爱好者
### FPGA自学笔记——设计与验证公开版 #### 1. FPGA技术背景与发展趋势 随着FPGA技术的不断发展,从最初的简单逻辑粘合逐渐演变为现在的可编程片上系统(SoC),FPGA的应用范围也在不断扩大。例如Altera(现已被...
自学AS的语言和方法,语句块,函数定义,包,类,事件侦听器
计算机网络自学笔记: 一、计算机网络基础 1. 计算机网络的定义 计算机网络是由多台计算机及相关设备组成,通过通信介质实现资源共享和信息交换的系统。网络中的设备可以通过特定的网络协议进行通信,而Internet...
FPGA自学笔记--设计与验证的知识点: 1. FPGA的介绍与发展 FPGA(Field-Programmable Gate Array,现场可编程门阵列)是一种可以通过编程来配置其逻辑功能和互连结构的集成电路。FPGA的发展经历了从最初简单的逻辑...
3. **开发环境与工具**:笔记中可能涵盖Xilinx的Vivado、Intel的Quartus II等主流FPGA开发工具的使用,包括项目创建、编译、仿真和硬件下载等步骤。 4. **逻辑门与逻辑元件**:从基础的AND、OR、NOT门到更复杂的...
本自学笔记主要围绕STM32的基础知识、开发环境搭建、程序编写和实践应用展开,旨在帮助初学者快速入门并掌握STM32的使用。 一、STM32基础 STM32系列涵盖多种内核类型,包括Cortex-M0、M3、M4和M7,不同内核提供了...
STM8单片机自学笔记, 经典的单片机自学笔记,通俗易懂好学好用。
这本《As3完全自学手册例子》显然是为初学者设计的,旨在帮助没有编程背景的人快速掌握AS3的基础知识。 AS3相比之前的版本AS2有显著的改进,包括更严格的类型检查、面向对象编程的支持、性能提升和更现代的语法结构...
AS400,全称IBM iSeries AS/400,是一种由IBM开发的企业级服务器系统,主要用于处理商业应用。AS400以其强大的数据库管理、应用程序开发和集成能力著称。以下是一些关于AS400的基本操作和知识点: 1. **用户管理**...