码迷,mamicode.com
首页 >  
搜索关键字:modify    ( 1504个结果
android蓝牙传输文件过程中关机,开机后状态栏没有对应通知
1. 修改OppReceiver.java       if (action.equals(BluetoothAdapter.ACTION_STATE_CHANGED))       Modify to      if (action.equals(Intent.ACTION_BOOT_COMPLETED)){         if (FeatureOption.MTK_BT_PROFIL...
分类:移动开发   时间:2014-09-10 10:54:40    阅读次数:312
alter column和modify column
5.6中,发现其实alter column 和更改modify column 步骤是一样的mysql> create table xs(name varchar(12),age int default 5);Query OK, 0 rows affected (0.34 sec)mysql> ins...
分类:其他好文   时间:2014-09-07 17:11:05    阅读次数:303
【ThinkingInC++】40、论const对函数返回值的作用
无论什么时候传递一个地址给一个函数,都应该尽可能地用const修饰它。 /** * 书本:【ThinkingInC++】 * 功能:论const对函数返回值的作用 * 时间:2014年9月7日14:14:01 * 作者:cutter_point */ class X { int i; public: X(int ii=0); void modify(); }; X::...
分类:编程语言   时间:2014-09-07 14:49:35    阅读次数:287
mysql中更改字段属性实际上都做了哪些操作
mysql> set profiling=1;Query OK, 0 rows affected (0.00 sec)mysql> alter table test modify name varchar(10);Query OK, 3 rows affected (0.00 sec)Records...
分类:数据库   时间:2014-09-07 09:49:24    阅读次数:362
cocos2d-x环境搭建 for eclipse
安装Cygwin在Cygwin的Home/(user)/.base_profile中增加NDK_ROOT环境变量 NDK_ROOT=/cygdrive/d/Android/android-ndk-r8e export NDK_ROOT 打开cocos2d-x解压根目录,找到文件 create-android-project.bat 打开。 看到这几行 :: modify it t...
分类:系统相关   时间:2014-09-04 22:25:00    阅读次数:270
Modify MySQL dump file the fatest way
使用mysql命令导入mysqldump生成的sql文件时,为了提高导入速度,往往需要修改dump文件,但是面对一个几十GB的文件,这事儿就太崩溃了,最快速的方法是这么做:( echo "SET AUTOCOMMIT=0;" echo "SET UNIQUE_CHECKS=0;" ...
分类:数据库   时间:2014-09-04 18:41:49    阅读次数:298
Linux -- groupmod
GROUPMOD(8) 系统管理命令 GROUPMOD(8)名称 groupmod - modify a group definition on the system大纲 groupmod [选项] GROUP描述 The groupmod command modifies the definiti...
分类:系统相关   时间:2014-09-03 00:18:26    阅读次数:590
Swift Generic Array 'not identical' error
Arrays in Swift are value types. That means thatdatais copied when passed into yourexchangemethod, but you are trying to modify the copy to affect the...
分类:编程语言   时间:2014-09-02 21:07:15    阅读次数:266
datawindow直接导入导出xml
long dwcontrol.ImportFile ( XML!, filename )dw_1.Modify("DataWindow.Export.XML.UseTemplate = 't_report'")dw_1.Modify("DataWindow.Export.XML.MetaDataTy...
分类:Windows程序   时间:2014-09-02 19:23:35    阅读次数:802
HDU 1556 Color the ball
题解:基础的树状数组区间修改,单点查询。#include #include int c[100005],a,b,n;int modify(int x,int num){while(x0)s+=c[x],x-=x&-x;return s;} //特别注意s初始化为0。 int main(){ w...
分类:其他好文   时间:2014-09-01 19:30:33    阅读次数:184
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!