摘要: Frame Structure - Time DominFollowing is the overall frame structure for 1.28Mcps options.1. one radio frame is 10ms length.2.one radio frame is made ... 阅读全文
posted @ 2014-04-17 17:34 MelodyLIU 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 先说明下我使用的版本:2012 v3.3 2012.12.10.0232012 v3.4 2013.01.15.025金山词霸 comments:词典:1.复数、过去式、过去分词 等一般都翻译不出来,所以查词很费劲,原型的词一般很少,都是变化后的词,所以只能自己拼原型再查词。这点要借鉴 有道2.有错误be in possession of 拥有。含主动以为,其主语应为人。3.科林斯高阶英汉双解学习词典中当语法信息超过右边边框时,被遮挡3.划词意 鼠标离开再点上 就没有了 还得再重新画一遍,建议:当选中的时候,鼠标离开消失词意,鼠标回到选中内容显示词意4.不支持 句子翻译单词本:1.单词测试占整 阅读全文
posted @ 2013-01-25 15:00 MelodyLIU 阅读(262) 评论(0) 推荐(0) 编辑
摘要: C++ 类中的const用法总结:先看一个例子:class A{public: A(int x) : num(x), b(x) {} void fun(const A& a); //const修饰函数形参 int GetNum(void) const;//const修饰不修改成员变量的函数 ... 阅读全文
posted @ 2014-12-09 16:43 MelodyLIU 阅读(1517) 评论(0) 推荐(0) 编辑
摘要: C++中参数传递有三种:传递参数值、传递参数地址、传递参数的引用。一、概念分解1. 值2. 指针 指针从本质上讲 就是存放 变量地址的 一个变量, 在逻辑上是独立的,它可以被改变,包括其所指向的地址的改变和其指向地址中所存放的数据的改变。3. 引用 引用是一个别名,在逻辑上不独立,它的存在具有依... 阅读全文
posted @ 2014-12-07 22:12 MelodyLIU 阅读(1590) 评论(0) 推荐(0) 编辑
摘要: The terms parameter and argument are sometimes loosly used interchangeably, and the context is used to distinguish the meaning.The terms parameter(som... 阅读全文
posted @ 2014-12-07 21:03 MelodyLIU 阅读(2078) 评论(0) 推荐(0) 编辑