码迷,mamicode.com
首页 >  
搜索关键字:virtual machine manager    ( 17119个结果
修改注册表
修改注册表 [HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Jet/4.0/Engines/Jet4.0] 将MaxLocksPerFile键值改为自己设置的值(如:9999999)。代码实现:function TfrmExport.EditRegister: Boo....
分类:其他好文   时间:2014-07-28 23:39:44    阅读次数:286
Notification
在发送一个Notification前,我们需要准备好一个NotificationManagerNotificationManager manager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE)...
分类:其他好文   时间:2014-07-28 21:25:24    阅读次数:165
Android学习笔记四:添加Source
问题描述Source not foundThe JAR file D:\.....\sdk\platforms\android-20\android.jar has no source attachment.问题原因及解决办法1. 使用SDK Manager下载最新版本的Sources for An...
分类:移动开发   时间:2014-07-28 19:11:44    阅读次数:269
多重继承和虚基类
多重继承描述的是有多个直接基类的类。多重继承会带来两个主要的问题: ①从两个不同的基类继承同名方法; ②从两个或更多相关基类那里继承同一个类的多个实例。例如: class A { private:  string name;  int id; public:  virtual void f(); ... }; class B:public A { private...
分类:其他好文   时间:2014-07-28 16:32:06    阅读次数:237
Base类sizeof大小 -- C++
Base类只是一个指针,所以Base大小是4个字节。 但Base类中添加一个int a,Base的大小变成8字节。 #include #include using namespace std; class Base1 { public: Base1(){cout << "Base1" << endl;} ~Base1(){cout << "~Base1" << endl;} virtual void f(int){cout << "Base1 f(int...
分类:编程语言   时间:2014-07-28 15:47:13    阅读次数:261
hdu1150Machine Schedule (二分匹配,最小顶点覆盖)
Problem Description As we all know, machine scheduling is a very classical problem in computer science and has been studied for a very long history. Scheduling problems differ widely in the nature of...
分类:其他好文   时间:2014-07-28 15:47:03    阅读次数:308
HDU1158:Employment Planning(DP)
Problem Description A project manager wants to determine the number of the workers needed in every month. He does know the minimal number of the workers needed in each month. When he hires or fires...
分类:其他好文   时间:2014-07-28 15:44:23    阅读次数:284
Python -- machine learning, neural network -- PyBrain 机器学习 神经网络
I am using pybrain on my Linuxmint 13 x86_64 PC.As what it is described: PyBrain is a modular Machine Learning Library for Python. Its goal is to offe...
分类:编程语言   时间:2014-07-28 11:33:00    阅读次数:292
Machine Learning Notes, MOOC, W1_Introduction
Definition of Supervised Learning and unsupervised learningIdea of supervised learning is to teach computer how to do something.Idea of unsupervised l...
分类:其他好文   时间:2014-07-28 11:32:10    阅读次数:183
javaSE_base01_基础
一、基础知识:1、JVM、JRE和JDK的区别: JVM(Java Virtual Machine):java虚拟机,用于保证java的跨平台的特性。 java语言是跨平台,jvm不是跨平台的。 JRE(Java Runtime Environment):java的运行环境,包括jvm+java的....
分类:编程语言   时间:2014-07-28 11:28:00    阅读次数:244
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!