查询rman备份信息经常使用指令----登陆到rman$rman target /----以精简的格式查看备份信息RMAN> list backup of database summary;List of Backups===============Key TY LV S Device Type C...
分类:
其他好文 时间:
2014-07-10 14:07:55
阅读次数:
289
http://acm.hdu.edu.cn/showproblem.php?pid=1879#include #include #include #include #include using namespace std;int n,tt;int tx[102],ty[102];struct nod...
分类:
其他好文 时间:
2014-06-27 00:54:20
阅读次数:
233
我们在开发注册界面的时候,最后几个注册条件常常容易被系统弹出的键盘遮挡,如下图:
可以看见,邮箱条件被遮挡掉了,怎么解决呢?我是通过UITextField的代理加计算偏移量:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, ty...
分类:
移动开发 时间:
2014-06-25 07:28:37
阅读次数:
232
闲来无事,从网上找了不少自定义控件,然后整理了一下,做了一个水晶按钮 /// /// 表示 Windows 的按钮控 /// [Description("表示 Windows 的按钮控件"), DefaultEvent("Click"), ToolboxBitmap(ty...
如题,在android studio中调用this.toString时,提示的错误信息是ambiguous method call. both get class () in object and get class () in object match主要是编译器不清楚getclass是使用的sd...
分类:
移动开发 时间:
2014-06-17 13:39:04
阅读次数:
227
1.PyListObject对象 --> 变长可变对象,可看作vector
typedef struct{
PyObject_VAR_HEAD //其中的ob_size表示实际被使用的内存的数量
PyObject **ob_item;//ob_item为指向元素列表的指针,实际上,Python中的list[0]就是ob_item[0]
int allocated;//当前列表中可容纳的元素的总数
}
PyList_Type 对象 --> PyListObject的类型对象
ty...
分类:
编程语言 时间:
2014-06-16 22:48:55
阅读次数:
300
C:\Windows\System32\mshtml.dll1、VS2010中引用Microsoft.mshtml之后,要修改这个引用的“嵌入互操作类型”为False。2、调用doc.write方法的时候必须通过IHTMLDocument2接口来调用,否则报错“错误的类型”,在google上搜“ty...
分类:
Web程序 时间:
2014-06-09 16:48:46
阅读次数:
247
查询rman备份信息常用指令
----登陆到rman
$rman target /
----以精简的格式查看备份信息
RMAN> list backup of database summary;
List of Backups
===============
Key TY LV S Device Type Completion Time#Pieces #Copies Co...
分类:
其他好文 时间:
2014-06-05 01:06:36
阅读次数:
383
【题目】
Validate if a given string is numeric.
Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true
Note: It is intended for the problem statement to be ambiguous. You should gather all requirements up front before imple...
分类:
其他好文 时间:
2014-06-04 23:45:09
阅读次数:
388
在 javascript 中经常会用到 typeof 和 instanceof
来判断一个对象的类型,可能 typeof 用得多些,那来看看这两个之间的区别吧。typeof
:typeof是一个一元运算符,放在一个运算数之前,运算数可以是任意类型。它返回值是一个字符串,该字符串说明运算数的类型。ty...
分类:
编程语言 时间:
2014-06-02 19:56:50
阅读次数:
222