首页 > 2015年07月16日 > 全部分享
053第5
5.Examine the section of the Health Check report given below: DBMS_HM.GET_RUN_REPORT('HM_RUN_1061') Run Name : HM_RUN_1061 Run Id : 1061  Check Name : Data Block Integrity  Check Mode :REA...
分类:其他   时间:2015-07-16 11:47:08    收藏:0  评论:0  赞:0  阅读:313
【LeetCode】Contains Duplicate II
Contains Duplicate II问题描述Given an array of integers and an integer k, find out whether there there are two distinct indices i and j in the array such that nums[i] = nums[j] and the difference between i...
分类:其他   时间:2015-07-16 11:47:08    收藏:0  评论:0  赞:0  阅读:285
ios7 ios8 定位兼容性问题解决方案
最近开发的app定位功能在ios8上能够正常运行,但是到了ios7的机器上就不能正常运行了,原因是两个系统的定位有些不一样,针对不同的系统是需要做一些处理的。一下是我的一些处理方法。@property(nonatomic, strong) CLLocationManager * locMgr; - (CLLocationManager *)locMgr { if (_locMgr == ni...
分类:移动平台   时间:2015-07-16 11:46:08    收藏:0  评论:0  赞:0  阅读:188
css3中 弹性盒模型布局之box-flex
box-flex:也就是让子容器针对父容器的宽高属性按照一定的规则来划分 Eg: html代码: 01 02 03 CSS样式: body,div { background:#fff; margin:0; padding:0;} .wrap { width:600px; height:200px; color:#fff; margin:20px 0 0 20px; te...
分类:Web开发   时间:2015-07-16 11:45:57    收藏:0  评论:0  赞:0  阅读:256
animation-circleProgress
CircleProgress github上一个开源项目 代码的主要目录是这样 1. CircleProgress 2. EaseInOutCubicInterpolator 3. MainActivity MainActivity是主界面负责布局的初始化和动画的启动暂停等控制 EaseInOutCubicInterpolator是时间插值生成的类 下面附上加了注释的代码...
分类:其他   时间:2015-07-16 11:45:49    收藏:0  评论:0  赞:0  阅读:241
44 Wildcard Matching
44 Wildcard Matching链接:https://leetcode.com/problems/wildcard-matching/ 问题描述: Implement wildcard pattern matching with support for ‘?’ and ‘*’.'?' Matches any single character. '*' Matches any sequen...
分类:其他   时间:2015-07-16 11:44:47    收藏:0  评论:0  赞:0  阅读:219
Error 1 Inconsistent accessibility: parameter type C#错误原因
问题场景: 我在C#定义了一个类A,其类型是默认类型,也就是只对命名空间内部全部开放。 另外我又在另外一个命名空间里定义了另外一个类B(为public类型),并且在这个类中定义了A的public对象. 在编译的时候提示上面的错误。 问题分析: 从上面的说明中我们可以看到,本来A对象是限定在它自己的命名空间里的,但是由于B的类型更加的开放,所以会导致B的类会...
分类:数据库技术   时间:2015-07-16 11:43:37    收藏:0  评论:0  赞:0  阅读:199
根据ip获取对应地区
注意:此方法引用淘宝网提供的接口。 import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import...
分类:其他   时间:2015-07-16 11:43:27    收藏:0  评论:0  赞:0  阅读:153
kqueue示例
网络服务器通常都使用epoll进行异步IO处理,而开发者通常使用mac,为了方便开发,我把自己的handy库移植到了mac平台上。移植过程中,网上居然没有搜到kqueue的使用例子,让我惊讶不已。为了让大家不用像我一样再次花费大力气搞定kqueue,我整理了一个简单清晰可运行的kqueue例子,供大家参考。 kqueue一共有几个函数:int kqueue(void); //类似epoll_cr...
分类:其他   时间:2015-07-16 11:43:08    收藏:0  评论:0  赞:0  阅读:281
GoogleCpp风格指南 8)格式 _part2
8.9 布尔表达式 Boolean Expressions Tip 如果一个布尔表达式超过标准行宽standard line length; 断行方式要统一一下; 下例中, 逻辑与(&&)操作符总位于行尾: 1 2 3 4 5 if (this_one_thing > this_other_thing &&...
分类:其他   时间:2015-07-16 11:41:18    收藏:0  评论:0  赞:0  阅读:190
[Zedboard u-boot Linux系统移植]-Embedded Linux® Hands-on Tutorial for the ZedBoard?
本文翻译自Embedded Linux® Hands-on Tutorial for the ZedBoard? 本文主要是详细讲解zedboard硬件系统搭建,u-boot,linux-kernel移植,linaro文件系统移植。过程中需要生成的文件有system.bit,fsbl.elf,u-boot.elf,devicetree.dtb,uImage(zImage和uImage区别请看),l...
分类:数据库技术   时间:2015-07-16 11:41:08    收藏:0  评论:0  赞:0  阅读:249
10361 - Automatic Poetry
#include#include#include#includeusing namespace std;char str1[105],str2[105];string s2,s4;int main(){ int n; cin >> n; getchar(); while(n-...
分类:其他   时间:2015-07-16 11:39:57    收藏:0  评论:0  赞:0  阅读:231
web.config
参数上传和文件上传大小限制调整,参数上传最大2097151
分类:Web开发   时间:2015-07-16 11:39:47    收藏:0  评论:0  赞:0  阅读:278
Summernote image upload
Summernote image uploadonImageUpload: function(files, editor, $editable) { messageCenterUploadTokenModule.query(function(d){ var...
分类:其他   时间:2015-07-16 11:39:37    收藏:0  评论:0  赞:0  阅读:311
get与post一些特殊情况下
p=574">文章已经迁移至http://androiddevelop.cn/?p=574 版权声明:本文博客原创文章。博客,未经同意,不得转载。
分类:其他   时间:2015-07-16 11:39:27    收藏:0  评论:0  赞:0  阅读:100
诗意摄影
诗意摄影《生活场景》作者:阮一峰日期:2011年12月10日今天,我看到了一组非常漂亮的照片《生活场景》(Scenes of Life)。它们用垂直俯视的视角,展示了普通人的生活瞬间,将时间定格在那一刻,在一个空旷和宁静的时空中,把人们内心淡淡的孤独和忧伤放大凝固了。所有照片中,主人公都处在休息或静...
分类:其他   时间:2015-07-16 11:38:57    收藏:0  评论:0  赞:0  阅读:227
[Android] ImageView.ScaleType设置图解
ImageView的Scaletype决定了图片在View上显示时的样子,如进行何种比例的缩放,及显示图片的整体还是部分,等等。设置的方式包括:1. 在layout xml中定义android:scaleType="CENTER"2. 或在代码中调用imageView.setScaleType(Im...
分类:移动平台   时间:2015-07-16 11:38:47    收藏:0  评论:0  赞:0  阅读:233
jQuery.extend()的合并对象功能
jQuery.extend( [ deep ], target, object1, [ objectN ] )合并对象到第一个对象 //deep为boolean类型,其它参数为object类型var object1 = { apple: 0, banana: {weight: 52, price:....
分类:Web开发   时间:2015-07-16 11:38:37    收藏:0  评论:0  赞:0  阅读:443
android context的一些理解
1.什么是context 1、它描述的是一个应用程序环境的信息,即上下文。2、该类是一个抽象(abstract class)类,Android提供了该抽象类的具体实现类(ContextIml类)。 3、通过它我们可以获取应用程序的资源和类,也包括一些应用级别操作,例如:启动一个Activity,发送...
分类:移动平台   时间:2015-07-16 11:38:27    收藏:0  评论:0  赞:0  阅读:211
【转】Java transient关键字使用小记
哎,虽然自己最熟的是Java,但很多Java基础知识都不知道,比如transient关键字以前都没用到过,所以不知道它的作用是什么,今天做笔试题时发现有一题是关于这个的,于是花个时间整理下transient关键字的使用,涨下姿势~~~好了,废话不多说,下面开始:1. transient的作用及使用方...
分类:编程语言   时间:2015-07-16 11:38:17    收藏:0  评论:0  赞:0  阅读:308
2299条   上一页 1 ... 84 85 86 87 88 ... 115 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!