码迷,mamicode.com
首页 > 2016年01月11日 > 全部分享
oc数组遍历
#import //数组遍历(枚举)对集合中的元素依此不重复的进行遍历int main(int argc, const char * argv[]) { @autoreleasepool {NSArray *arr=@[@"MON",@"TUE",@"WED",@"THU",@"FRI",@"SA....
分类:编程语言   时间:2016-01-11 17:44:41    阅读次数:164
122. Best Time to Buy and Sell Stock II
Say you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete a...
分类:其他好文   时间:2016-01-11 17:43:12    阅读次数:142
Jetserver开源项目学习(七)—— ChannelFutureListener的用法
用法一:给通道添加异步接口public void close() { LOG.debug("Going to close tcp connection in class: {}", this .getClass().getName()); ...
分类:其他好文   时间:2016-01-11 17:43:49    阅读次数:674
前端菜鸡之路——mongoDB
MongoDB是一个基于分布式文件存储的非关系型数据库(NOSQL),由C++语言编写,旨在为WEB应用提供可扩展的高性能数据存储解决方案。MongoDB支持的数据结构非常松散,是类似json的bjson格式,因此可以存储比较复杂的数据类型。MongoDB最大的特点是它支持的查询语言非常强大,其语法...
分类:数据库   时间:2016-01-11 17:42:58    阅读次数:170
隐藏自定义的tabbar
由controllerA推出controllerBA中:- (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; UIView *tabbar = [self.tabBarController.view vi.....
分类:其他好文   时间:2016-01-11 17:43:11    阅读次数:209
Html5添加非常实用的可自动轮播的旋转木马插件教程
分类:其他好文   时间:2016-01-11 17:33:49    阅读次数:253
day11 python学习随笔
堡垒机设计paramiko
分类:编程语言   时间:2016-01-11 16:34:49    阅读次数:284
rsyn常见错误总结--方便用于排错
rsyn常见错误总结--方便用于排错下面是rsyncd.conf的配置:#########zhaofanrsync########uid=rsyncgid=rsyncusechroot=nomaxconnections=200timeout=300pidfile=/var/run/rsyncd.pidlockfile=/var/run/rsync.locklogfile=/var/log/rsyncd.log[zhaofan]path=/zhaofan/ignoreerr..
分类:其他好文   时间:2016-01-11 16:36:10    阅读次数:535
拦截API 注入进程
本文详细的介绍了在Visual Studio(以下简称VS)下实现API钩子的编程方法,阅读本文需要基础:有操作系统的基本知识(进程管理,内存管理),会在VS下编写和调试Win32应用程序和动态链接库(以下简称DLL)。API钩子是一种高级编程技巧,常常用来完成一些特别的功能,比如词典软件的屏幕取词...
分类:Windows程序   时间:2016-01-11 16:33:26    阅读次数:494
多线程操作控件属性
public partial class Form1 : Form{ private delegate void FlushClient();//代理 public Form1() { InitializeComponent(); } privat...
分类:编程语言   时间:2016-01-11 16:33:06    阅读次数:263
由于权限不足而无法读取配置文件出现的HTTP 500.19解决办法
无法访问请求的页面,因为该页的相关配置数据无效。如下图:解决方法,到站点目录的属性,安全标签,添加用户(Everyone),并给修改权限:
分类:Web程序   时间:2016-01-11 16:34:51    阅读次数:408
remainingCharacters谷歌浏览器报错未定义,这到底是不是个属性呢,还是作者没有写清楚?
1 2 3 4 5 6 32 33 34 限制字符串长度35 通过“maxlength”控制:36 通过JS控制:37 38 代码来源----------《超实用JavaScript代码段》
分类:其他好文   时间:2016-01-11 16:33:24    阅读次数:620
图片放大预览(支持多张,支持双击放大)
使用方法 JZAlbumViewController *album = [[JZAlbumViewController alloc] init]; album.imgArr = self.imgsArray;//可以是图片的url字符串数组,亦可以是UIImage album.currentIn.....
分类:其他好文   时间:2016-01-11 16:34:38    阅读次数:331
android:inputType参数类型说明
android:inputType参数类型说明android:inputType="none"--输入普通字符android:inputType="text"--输入普通字符android:inputType="textCapCharacters"--输入普通字符android:inputType=...
分类:移动开发   时间:2016-01-11 16:34:09    阅读次数:188
数组排序
#import int main(int argc, const char * argv[]) { @autoreleasepool { NSArray *arr=@[@{@"name":@"Tim Cook",@"age":@"24",@"sex":@"female",@...
分类:编程语言   时间:2016-01-11 16:32:09    阅读次数:140
JPA调用存储过程
@Transactional public BasAccount findByAccount(String account) { System.out.println(account); Query q = em.createNativeQuery("{call Q...
分类:其他好文   时间:2016-01-11 16:32:30    阅读次数:229
[caffe]深度学习之图像分类模型AlexNet解读
在imagenet上的图像分类challenge上Alex提出的alexnet网络结构模型赢得了2012届的冠军。要研究CNN类型DL网络模型在图像分类上的应用,就逃不开研究alexnet,这是CNN在图像分类上的经典模型(DL火起来之后)。在DL开源实现caffe的model例子中,它也给出了al...
分类:Web程序   时间:2016-01-11 16:31:30    阅读次数:712
1170条   上一页 1 ... 33 34 35 36 37 38 39 ... 69 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!