mediatek\operator下面有单独的apk,也有overlay的数据,单独的apk会配置anroid.mk,找到对应的路径直接build。
如果是overlay,则编译原来应用的路径,例如
\mediatek\operator\OP02\SPEC0200\SEGA\OverLayResource\packages\apps\Launcher2\res\xml
需要编译mm pack...
分类:
其他好文 时间:
2014-09-19 12:07:45
阅读次数:
260
本来想用 priority_queue 去写个bfs。结果重载运算符忘了。ORZ。
然后看书和问别人熟悉了一下,记录一下。
struct lx
{
int x,y,lv;
};
有一个这样的结构体。x,y,是坐标,lv 是它的权。重载
struct lx
{
int x,y,lv;
friend bool operator<(lx a,lx b)
...
分类:
编程语言 时间:
2014-09-19 12:01:05
阅读次数:
236
expr命令为Linux中的命令,一般用于整数值计算,但也可用于字符串操作。一:整数值计算expr argument operator argument 【注意有空格】expr 10 / 2二:字符串match String1 String2与 Expression1 : Expression2 相...
分类:
其他好文 时间:
2014-09-19 11:54:25
阅读次数:
185
#include
using namespace std;
class Point{
public:
Point(int _x = 0, int _y = 0, int _z = 0):x(_x), y(_y), z(_z){}
Point(){}
~Point(){}
friend ostream& operator<<(ostream &os, const Point &pd);
...
分类:
编程语言 时间:
2014-09-19 04:29:05
阅读次数:
183
运算符重载(Operator overloading)是C++重要特性之一,本文通过列举标准库中的运算符重载实例,展示运算符重载在C++里的妙用。具体包括重载operator<>支持cin,cout输入输出;重载operator[],实现下标运算;重载operator+=实现元素追加;重载operator()实现函数调用。...
分类:
编程语言 时间:
2014-09-18 00:48:53
阅读次数:
261
点击打开链接
SPFA + A*
#include
#include
#include
#include
using namespace std;
struct node {
int v, dis, f, next;
friend bool operator b.f;
}
};
const in...
分类:
其他好文 时间:
2014-09-16 23:44:21
阅读次数:
189
运算符重载要求:重载的实例为:要定义重载的类中定义如下: 1 class LimitedInt 2 { 3 const int MaxValue = 100; 4 const int MinValue = 0; 5 6 public stat...
分类:
其他好文 时间:
2014-09-16 23:42:11
阅读次数:
320
1. C++默认调用哪些函数当类中的数据成员类型是trival数据类型(就是原c语言的struct类型)时,编译器默认不会创建ctor、 copy ctor、assign operator、dctor。只有在这些函数被调用时,编译器才会创建他们。这时候我们要自己创建构造函数,初始化内置数据类型。一般...
分类:
编程语言 时间:
2014-09-15 22:37:09
阅读次数:
234
实例代码:class TT{public: inline int operator()(int i){return i +1;} inline double operator()(double dd){return dd + 2;}};int main(){ TT tt; //可调用对象和其参数 c...
分类:
其他好文 时间:
2014-09-15 17:28:49
阅读次数:
165
字符串变量用于存储并处理文本片段。PHP 中的字符串字符串变量用于包含字符串的值。连接运算符(Concatenation Operator)连接运算符 (.) 用于把两个字符串值连接起来。strlen() 函数strlen() 函数用于计算字符串的长度。";$varNew = $varFir.$va...
分类:
Web程序 时间:
2014-09-14 23:18:47
阅读次数:
301