码迷,mamicode.com
首页 >  
搜索关键字:com+    ( 319076个结果
Oracle数据库管理
sysdba>sysoper>dba角色shutdown;关闭数据库startup;启动数据库
分类:数据库   时间:2014-04-28 00:15:20    阅读次数:548
宏函数定义继承类
//: ORDER.CPP -- Order of constructor calls // with inheritance#include #define inherit(derived, base) \class derived : public base { \public: \ deri....
分类:其他好文   时间:2014-04-28 00:09:24    阅读次数:444
交互式shell和非交互式shell、登录shell和非登录shell的区别
交互式shell和非交互式shell、登录shell和非登录shell的区别。首先,这是两个不同的维度来划分的,一个是是否交互式,另一个是是否登录。交互式shell和非交互式shell(interactive shell and non-interactive shell)交互式模式就是在终端上执行...
分类:其他好文   时间:2014-04-28 00:05:33    阅读次数:210362
第1天:了解Java基础知识
Java的优势1. 简单 不像C或者C++语言,Java中省去了对指针的操作。但是,Java中并没有省去指针,代替指针的是一种新的变量——引用,引用也是保存一个对象的内存地址。2.方便 Java虚拟机自带垃圾回收器,能够自动回收内存资源。而C和C++语言,需要开发人员手动进行内存资源回收。3.安.....
分类:编程语言   时间:2014-04-28 00:01:34    阅读次数:574
linux安装 apache2.2 django mod_wsgi
系统是ubuntu12.04一、安装apachesudo apt-get install apache启动:sudo apachectl start (开机默认启动的)重启:sudo apachectl restart关闭:sudo apachectl stop安装之后在浏览器中访问127.0.0....
分类:系统相关   时间:2014-04-27 23:57:43    阅读次数:742
csharp:Google TTS API text to speech
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2014-04-27 23:51:43    阅读次数:1188
Cellular Traffic Offloading
Reference:[1] Mobile Data Offload for 3G Networks[2] Mobile Data Offloading through Opportunistic Communications and Social Participation[3] Femtocell...
分类:其他好文   时间:2014-04-27 23:49:41    阅读次数:649
纯虚函数也可以有内容,并被子类调用
#include class base {public: virtual void v() const = 0; virtual void f() const = 0 { // 纯虚函数也有实现内容,但子类仍然必须实现这个虚函数 cout << "base::f()\n"; }};voi...
分类:其他好文   时间:2014-04-27 23:47:48    阅读次数:561
Android USB大容量存储时SD卡状态监听(转)
对SD卡状态监听,到现在为止我知道的有两种方式:1.注册StorageEventListener来监听sd卡状态StorageEventListener中有onStorageStateChanged()方法,当sd卡状态改变时,此方法会调用,对各状态的判断一般会用到Environment类,此类中包...
分类:移动开发   时间:2014-04-27 23:45:49    阅读次数:637
JNI文件中命名类与JAVA文件中匹配
jni.c中注册中int register_android_boa(JNIEnv *env){ jclass clazz; static const char* const kClassName = "com/lxl/ledClass"; //命名的类 /* look up the class */...
分类:编程语言   时间:2014-04-27 23:43:52    阅读次数:521
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!