In file included from mod_shib_20.cpp:68:mod_shib.cpp:118: warning: deprecated conversion from string constant to 'char*'mod_shib.cpp: In member funct...
分类:
其他好文 时间:
2015-09-11 20:34:54
阅读次数:
157
Window?>?Preferences?>?General?>?Capabilities?>?Advanced?> ? MyEclipse ?Standard? Tools?>?check?the?option?WTP?(Deprecated). 在SVN导出的Maven项目,或以前不是用Maven管理的项目想要转...
分类:
系统相关 时间:
2015-09-10 16:13:50
阅读次数:
685
之前用Text Kit写Reader的时候,在分页时要计算一段文本的尺寸大小,之前使用了NSString类的sizeWithFont:constrainedToSize:lineBreakMode:方法,但是该方法已经被iOS7 Deprecated了,而iOS7新出了一个boudingRectWi...
分类:
其他好文 时间:
2015-09-07 10:46:07
阅读次数:
188
Thread.stop, Thread.suspend, Thread.resume被标记为废弃的方法。在查看JDK的文档时,提到了下面的参考文章,先是英文版,接着是中文翻译。 Why is Thread.stop deprecated?Because it is inherently uns...
分类:
其他好文 时间:
2015-08-31 23:13:59
阅读次数:
182
我实现的效果混乱的锁屏控制Android自4.0版本, 也就是API level 14开始, 加入了锁屏控制的功能, 相关的类是RemoteControlClient, 这个类在API level 21中被标记为deprecated, 被新的类MediaSession所替代. 我们的音乐App中最开始使用的是原生锁屏控制API, 说实话这个API不好用, 遇到了一些小坑, 最要命的是不同品牌的手机,...
分类:
其他好文 时间:
2015-08-31 01:12:31
阅读次数:
903
char a = 'w';char b = 'q';const char* p = &a;p = &b;printf("%c",p[0]);如上一段代码,最终代码输出q。不是有const修饰嘛?为什么仍然可以改变哪?指针存在的价值在于让我们修改。如一下代码:会报一个警告deprecated con....
分类:
其他好文 时间:
2015-08-30 21:08:40
阅读次数:
120
1. Annotation的作用元数据特性,注释,使用注释的方式加入一些程序的信息java.lang.annotation Annotation接口2. 系统内建的三个Annotation@Override:覆写的注释@Deprecated:不赞成使用的注释@SuppressWarnings:压制安...
分类:
编程语言 时间:
2015-08-28 19:36:41
阅读次数:
143
Notification即通知,用于在通知栏显示提示信息。在API Level > 11,Notification类中的一些方法被Android声明deprecated(弃用),而在API Level > 16,Notification类又有新的方法实现。创建Notification通知:1、获取N...
分类:
其他好文 时间:
2015-08-27 20:48:01
阅读次数:
174
最近在使用Apache的httpclient的时候,maven引用了最新版本4.3,发现Idea提示DefaultHttpClient等常用的类已经不推荐使用了,之前在使用4.2.3版本的时候,还没有被deprecated。去看了下官方文档,确实不推荐使用了,点击此处详情。DefaultHttpCl...
分类:
编程语言 时间:
2015-08-19 23:25:47
阅读次数:
197
sun.misc.BASE64DecoderWindows -> Preferences -> Java -> Compiler -> Errors/Warnings ->Deprecated and trstricted API -> Forbidden reference (access rul...
分类:
其他好文 时间:
2015-08-19 01:57:35
阅读次数:
102