本篇我们将实现Queue的简单操作;一、Queue版本1;通过本程序,我们可以看到 pop、push 、back、front、size的简单操作的实现;//Queue.hpp#ifndef QUEUE_H_#define QUEUE_H_#include template //默认的类型形参 >cl...
分类:
编程语言 时间:
2014-10-02 02:51:02
阅读次数:
315
1. 问题描述和起因
在使用Appium1.7.0及其以下版本的时候,我们可以直接使用如下代码来创建一个AppiumDriver实例进行对安卓设备的操作。
driver = new AndroidDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);但在把Appium包升级到当前最新的2.0.0版本的时候,这段代码会引发如下...
分类:
移动开发 时间:
2014-10-01 15:41:31
阅读次数:
391
近期我公司部署了虚拟化,採购了两台Dell R710的server(CPU:64位双核,主频:2.4GHZ, 32G 内存、硬盘:2块300G做Riad 1、3块2T做Riad 5 、10块网卡),在两台server上安装了Vmware Esx 5.0 ,因为虚拟化方面的知识之前仅仅是使用过一些cl...
分类:
其他好文 时间:
2014-10-01 15:36:01
阅读次数:
277
今天,安装完VS2013之后,不能正常启动。总提示一个让人摸不到头脑的错误:"Cannot find one of more components. Please reinstall the application"重新安装之后还是有一样的问题。后来发现, devenv.exe 对 “C:\Prog...
分类:
移动开发 时间:
2014-09-30 19:56:49
阅读次数:
616
how to add Javascript and CSS in page layout with sharepoint 2013
Sometimes, we need create a custom page layout, at the time, if we want to add some javascript and css code, how to do it? we cannot ...
分类:
编程语言 时间:
2014-09-30 18:03:29
阅读次数:
249
3.SPD cannot open site, in the log :Error when open web service: System.InvalidOperationException: A binding instance has already been associated to l...
分类:
其他好文 时间:
2014-09-30 00:55:31
阅读次数:
289
MySQL在删除一张表时出现ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails可能是MySQL在InnoDB中设置了foreign key关联,造成无法更新或删除数据。可以通...
分类:
数据库 时间:
2014-09-29 20:44:02
阅读次数:
250
今天在编译chkrootkit工具时报错,/usr/bin/ld:cannotfind-lc,请教了不少人,在网上找了不少方法尝试终于解决了先看问题:这问题一般是由于ld在进行库连接时找不到相应的库文件导致的解决方法:出现问题时,先去lib目录下查找相关的库文件:[root@localhost~]#cd/usr/lib[root..
分类:
其他好文 时间:
2014-09-29 20:39:12
阅读次数:
323
类的继承过程分为公有继承,保护继承和私有继承,无论哪一种继承,基类的私有成员在派生类成员中都是不可见的,可是基类的私有成员是否被派生类继承了呢?通过以下实验即可知道。
代码如下:
class Base {
public:
Base():a(5){}
private:
virtual void f() { cout
int a;
};
cl...
分类:
其他好文 时间:
2014-09-29 16:48:31
阅读次数:
180
问题现象:
我在执行开启归档命令后报错误ORA-00265
SQL> alter database archivelog;
alter database archivelog
*
ERROR at line 1:
ORA-00265: instance recovery required, cannot set ARCHIVELOG mode
...
分类:
其他好文 时间:
2014-09-29 14:25:10
阅读次数:
214