码迷,mamicode.com
首页 >  
搜索关键字:as3    ( 473个结果
BGP的选路
一、实验要求:1、AS1去AS2走R22、AS2去AS1走R43、AS1去AS3走R64、AS2去AS3走R65、AS3去AS2走R56、AS3去AS1走R57、每个选路规则只能使用一次解决以上步骤的选路方法(事先没有规划):1、local-preference2、MED3、Weight4、Origin5、AS-path6、next-hop二、BGP的选路规则:1、weight,范围0-65535
分类:其他好文   时间:2018-04-07 11:21:17    阅读次数:141
unity2017.4.0f1使用AS3.0的AndroidSDK遇到的问题
原因: Unity 在编译时会调用 Android SDK tools 中的 android 命令,而在新版本的 Android SDK tools 中,android这个命令已经废弃了,导致 Unity 无法正常编译。、 解决方案: 从官网http://www.androiddevtools.cn ...
分类:移动开发   时间:2018-03-28 14:18:17    阅读次数:214
汇编语言——编译器
一个汇编语言程序从写出到最终执行的简要过程: 编写--〉编译--〉连接--〉执行 1、编写 notepad++选择Assembly ...
分类:编程语言   时间:2017-12-22 18:34:53    阅读次数:238
1.3.2 let
let赋值域变量不能从另一个获得 ...
分类:其他好文   时间:2017-11-25 11:25:43    阅读次数:170
1.31 (另一种求圆周率的算法)
(define (product term a next b) (if (> a b) 1 (* (term a) (product term (next a) next b)))) (product (lambda (x) x) 1 (lambda (i) (+ i 1)) 5) ... ...
分类:编程语言   时间:2017-11-25 11:21:54    阅读次数:209
1.33 (过滤累积和 求区间内所有素数之和)
(define (filtered-accumulate filter? combiner null-value term a next b) (define (iter a result) (cond ((> a b) result) ((filter? a) (iter (next a) (co... ...
分类:其他好文   时间:2017-11-25 11:16:44    阅读次数:166
习题1.29 (积分方法的优化---simpson规则)
(define (sum term a next b) (if (> a b) 0 (+ (term a) (sum term (next a) next b)))) (define (integral f a b dx) ;积分 (define (add-dx x) (+ x dx)) (* (s... ...
分类:其他好文   时间:2017-11-25 00:58:02    阅读次数:252
SCIP习题 1.21(寻找最小因子)
19919997 ...
分类:其他好文   时间:2017-11-24 22:50:52    阅读次数:154
Spring---bean的命名
每个Bean可以有一个或多个 id,我们把第一个 id 称为“标识符”,其余id叫做“别名”,这些id在 IoC 容器中必须唯一。 Bean id 的命名约定: Bean id 的命名方式: 配置全限定类名,唯一 指定id,唯一 指定name,唯一 指定id和name,唯一 指定多个name,唯一 ...
分类:编程语言   时间:2017-11-12 12:31:38    阅读次数:164
red5 视频应用开发指南。第三个项目成功运行经验(3)
1,接着第二篇的文章,书写flash的发送与接收程序 来讲讲设计的思路与原理: 1,flash连接服务器,通过NetConnection 携带用户名信息 使用到的As3中NetConnection的方法如下: (1)connect :用于网络的连接 第一个参数可以写Url地址 第二个参数是:携带的用 ...
分类:其他好文   时间:2017-11-08 20:03:55    阅读次数:176
473条   上一页 1 ... 5 6 7 8 9 ... 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!