在weblogic执行XA操作的时候,我们会碰到如下的错误,后来发现是JDBC配置的问题。主要报错:java.sql.SQLException: XA error: XAER_NOTA : The XID is not valid start() failed on resource'weblogi...
分类:
Web程序 时间:
2014-12-30 11:17:03
阅读次数:
384
如果你直接在 UIViewController 中加入一个 UITableView 并将其 Content 属性设置为 Static Cells,此时 Xcode 会报错:Static table views are only valid when embedded in UITableViewCo...
分类:
移动开发 时间:
2014-12-29 10:16:16
阅读次数:
170
今天出现这个问题No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=arm64, VALID_ARCHS=armv7 armv7s).解决参考:http://stackoverflow.com/questions/12...
分类:
移动开发 时间:
2014-12-28 16:49:52
阅读次数:
254
【题目】
Given a binary tree, determine if it is a valid binary search tree (BST).
Assume a BST is defined as follows:
The left subtree of a node contains only nodes with keys less than the nod...
分类:
其他好文 时间:
2014-12-27 17:34:02
阅读次数:
236
一、 题目
题目给出一个字符串,求出它是否为回文字符串,其中只有字母和数字是有效字符,其他的字符可以忽略。
例如:"Aman, a plan, a canal: Panama" 是回文字符串.
"race a car" is not a palindrome.不是回文字符串
二、 分析
看到这个题目我首先想到的是使用两个数组将有效字符串保存,其中一个正序一个逆序,然后做比...
分类:
其他好文 时间:
2014-12-26 21:44:07
阅读次数:
152
dumpheap 时提示:0:105> !dumpheap -stat The garbage collector data structures are not in a valid state for traversal. It is either in the "plan phase...
分类:
数据库 时间:
2014-12-26 20:14:45
阅读次数:
398
SSMS在一定程度上方便我们进行一些常见的操作。但有时候它处理得又不是那么不人性化。尤其是错误信息。今天我在进行数据库还原的时候就碰到一个错误:指定的转换无效。(SqlManagerUI)Specified cast is not valid.(SqlManagerUI)没办法,不得不敲代码了:RE...
分类:
数据库 时间:
2014-12-26 14:30:02
阅读次数:
1382
Evaluate the value of an arithmetic expression in Reverse Polish Notation.
Valid operators are +, -, *, /.
Each operand may be an integer or another expression.
Some examples:
["2", "1", ...
分类:
其他好文 时间:
2014-12-26 13:08:49
阅读次数:
168
【1】_BLOCK_TYPE_IS_VALID是什么错误?(1)最简单的示例代码如下:1 void main()2 {3 int* pA = new int(1);4 delete pA;5 delete pA;6 }(2)运行后崩溃截图如下:(3)分析结果:这个assert...
分类:
其他好文 时间:
2014-12-25 20:13:21
阅读次数:
206
Given a string containing just the characters '(', ')',
'{', '}', '[' and ']', determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" are all valid b...
分类:
其他好文 时间:
2014-12-25 16:25:57
阅读次数:
123