码迷,mamicode.com
首页 >  
搜索关键字:called    ( 1945个结果
LeetCode 376. Wiggle Subsequence 摆动子序列
原题 A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and negative. T ...
分类:其他好文   时间:2017-04-07 15:53:46    阅读次数:294
回调函数(callback)学习笔记
1.stack overflow 上大神的描述(浏览的网页没记住): A "callback" is any function that is called by another function which takes the first function as a parameter. 2.看了 ...
分类:其他好文   时间:2017-03-31 19:08:49    阅读次数:462
【酷熊科技】工作积累 ----------- 动画播放 直接写代码控制的
动画 播放 ...
分类:其他好文   时间:2017-03-31 15:48:33    阅读次数:157
PHP 面向对象语法细节
The pseudo-variable $this is available when a method is called from within an object context. $this is a reference to the calling object (usually the ...
分类:Web程序   时间:2017-03-29 11:25:31    阅读次数:236
1087 Super Jumping! Jumping! Jumping! 【动态规划】
Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU. Maybe you are a good boy, and know little about this ...
分类:其他好文   时间:2017-03-28 00:31:42    阅读次数:203
Java并发程序设计(15)并发锁之读写锁(续二)写锁降级
1.1.1. 读写锁应用之三写锁降级 ReentrantReadWriteLock还具有写锁降级的特点,而这跟可重入性有一些关系。 (1)持有写锁时可以降级为读锁。 (2)持有读锁时不能升级为写锁。 ReentrantReadWriteLock和ReentrantLock相似的是都有一个特点,就是可 ...
分类:编程语言   时间:2017-03-24 23:32:43    阅读次数:363
Linux-----centos6.2---安装Linux的流程
1、安装命令 2、查看是否安装正确 3、启动 (1)、启动服务: (2)、停止服务: (3)、加入开机启动: (4)、移除开机启: (5)、查看服务是否正在运行: 第一种方法: 第二种方法: 4、进入 (1)、第一次进入时,因为Root用户密码为空,输入: (2)、设置Mysql root用户密码: ...
分类:系统相关   时间:2017-03-22 20:35:59    阅读次数:185
python 装饰器
1 装饰器参数 1.1 装饰器和被装饰函数都不带参数 """ 装饰器装饰一个函数时,究竟发生了什么 """ def decorator_hello(func): print("decorator_hello called") return func @decorator_hello def hell ...
分类:编程语言   时间:2017-03-22 12:47:12    阅读次数:201
CI框架学习笔记3——Log.php
上一节说完了Common.php,然而跟代码打交道总是免不了日志记录,所以这一节我们说说Log.php文件。 先看看类里面的几个属性, protected $_log_path; 日志路径 protected $_file_permissions = 0644; 文件权限 protected $_t ...
分类:Web程序   时间:2017-03-22 00:15:37    阅读次数:320
fs.watchFile
【fs.watchFile】 fs.watchFile(filename[, options], listener) Watch for changes on filename. The callback listener will be called each time the file is a ...
分类:其他好文   时间:2017-03-19 01:52:08    阅读次数:171
1945条   上一页 1 ... 85 86 87 88 89 ... 195 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!