修改了编译级别之后出现如下错误提示: Description ResourcePath LocationType Java compiler level does not match the version of the installed Java project facet.SSJ Unknow...
分类:
编程语言 时间:
2014-12-10 12:03:52
阅读次数:
454
//指向文件类型的指针
//在C语言的文件你的读写一般使用系统的库函数来对数据进行读写
//文件的类型的指针
//文件的结构
#include
#include
using namespace std;
typedef struct
{
short level;
//缓冲区满或者是空的程度
unsigned flags;
//文件状态标志
char fd;
//...
分类:
其他好文 时间:
2014-12-10 09:19:09
阅读次数:
187
Problem Description “回文串”是一个正读和反读都一样的字符串,比如“level”或者“noon”等等就是回文串。请写一个程序判断读入的字符串是否是“回文”。Input输入包含多个测试实例,输入数据的第一行是一个正整数n,表示测试实例的个数,后面紧跟着是n个字符串。每个字符串长度不...
分类:
编程语言 时间:
2014-12-09 22:40:05
阅读次数:
199
sudo dump -0j -f ./home.dump.bz2 /home DUMP: Date of this level 0 dump: Tue Dec 9 16:44:55 2014 DUMP: Dumping /dev/sda8 (/home) to ./home.dump.bz2 ...
分类:
其他好文 时间:
2014-12-09 17:21:20
阅读次数:
137
android:targetSdkVersionAn integer designating the API Level that the application targets. If not set, the default value equals that given to minSdkVe...
分类:
移动开发 时间:
2014-12-09 15:26:43
阅读次数:
204
Beginning with API Level 8, you can allow your application to be installed on the external storage (for example, the device's SD card). This is an opt...
分类:
移动开发 时间:
2014-12-09 15:11:54
阅读次数:
414
最近开发用到了通知功能,但有几个地方老是提示deprecated,然后就找了篇文章学习了下新旧版本的不同。Notification即通知,用于在通知栏显示提示信息。在较新的版本中(API level > 11),Notification类中的一些方法被Android声明deprecated(弃用),...
分类:
移动开发 时间:
2014-12-09 13:47:26
阅读次数:
164
【题目】
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between).
For example:
Giv...
分类:
其他好文 时间:
2014-12-09 12:14:27
阅读次数:
164
PEP8 Python 编码规范 一 代码编排 1 缩进。4个空格的缩进(编辑器都可以完成此功能),不使用Tap,更不能混合使用Tap和空格。2 每行最大长度79,换行可以使用反斜杠,最好使用圆括号。换行点要在操作符的后边敲回车。3 类和top-level函数定义之间空两行;类中的方法定义之间空一行...
分类:
编程语言 时间:
2014-12-08 22:35:44
阅读次数:
226
刚创建的vc 和 nav 都为nil,这给断点调试增加了很多麻烦,难道是xcode的bug吗?
群里问问大牛,不得姐,网上有查,最终找到解决方法:
在Project的Build Settings中把Optimization Level 设置成 None 即可。...
分类:
其他好文 时间:
2014-12-08 12:27:30
阅读次数:
168