问道python之基础篇【二】Python入门1.python的工作过程python解释器把源代码转换为字节码的中间形式,然后再把它翻译成机器使用的机器语言并运行。2.pyc文件2.1.什么是pyc文件执行python代码时,如果导入了其他的.py文件,那么在执行过程中会自动生成一个与其同名的.py...
分类:
编程语言 时间:
2015-12-28 23:22:45
阅读次数:
254
观察者模式也被称作发布/订阅模式,观察者模式定义了一种一对多的依赖关系,让多个观察者对象同时监听某一个主题对象。这个主题对象在状态发生变化时,会通知所有观察者对象,使它们能够自动更新自己。观察者模式中,一个目标物件管理所有相依于它的观察者物件,并且在它本身的状态改变时主动发出通知。iOS开发中最明显...
分类:
移动开发 时间:
2015-12-28 23:20:58
阅读次数:
182
背景:紧着现在项目的需要,先从JQuery.ajax出发,主要需求是通过 js 调用Java 代码,从而适应现在的项目。 先从几个概念开始讲解: 一. 什么是Deferred Deferred 对象是由.Deferred构造的, .Deferred被实现为简单工厂模式。它是用来解决JS中的异步...
分类:
编程语言 时间:
2015-12-28 23:19:58
阅读次数:
346
shape和selector嵌套版shape单独使用
分类:
移动开发 时间:
2015-12-28 23:19:26
阅读次数:
345
Identity CardTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2696Accepted Submission(s): 1048 Pro...
分类:
其他好文 时间:
2015-12-28 23:19:05
阅读次数:
306
Contains Duplicate IIIGiven an array of integers, find out whether there are two distinct indicesiandjin the array such that the difference betweennum...
分类:
编程语言 时间:
2015-12-28 23:19:22
阅读次数:
456
前言: 最近在写自己的博客网站,算是强化一下自己对s2sh框架的理解。期间遇到了很多问题,这些问题在写之前都考虑过,感觉也就是那样吧。但正真遇到了,也挺让人难受的。就利用zyUpload这个js插件实现文件的上传, 我来谈一谈。zyUpload下载: https://github.com/hjz.....
分类:
Web程序 时间:
2015-12-28 23:19:55
阅读次数:
336
https://www.r-project.org/http://cos.name/2013/08/r-rjava-java/http://blog.csdn.net/hwssg/article/details/39177959目录rJava介绍rJava安装rJava实现R调用JavarJava(...
分类:
编程语言 时间:
2015-12-28 23:17:40
阅读次数:
1910
dispatch_queue_t defaultQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_async(defaultQueue, ^{ [[NSNotific...
分类:
其他好文 时间:
2015-12-28 23:17:41
阅读次数:
176
一:简单理解 国际化简称i18n,其来源是英文单词 internationalization的首末字符i 和n。18为中间的字符数。 随着全球经济的一体化,软件开发者应该开发出支持多国语言、国际化的Web应用。对于Web应用来说,同样的页面在不同的语言环境下需要显示不同的效果。 国际化文件的命...
分类:
其他好文 时间:
2015-12-28 23:18:33
阅读次数:
218
git 远程仓库git remote add origin git@github.com:cylzh/learngit.gitgit push -u origin matergit branch :创建分支。git checkout :切换分支。git branch -b :创建并切换分支。git ...
分类:
其他好文 时间:
2015-12-28 23:16:26
阅读次数:
251
Archaeologists have discovered a new set of hidden caves in one of the Egyptian pyramids. The decryption of ancient hieroglyphs on the walls nearby sh...
分类:
其他好文 时间:
2015-12-28 23:16:04
阅读次数:
244
1 import sys, urllib22 # req = urllib2.Request(sys.argv[1])3 req = urllib2.Request('http://www.sina.com.cn')4 fd = urllib2.urlopen(req)5 print "Retrie...
分类:
编程语言 时间:
2015-12-28 23:16:29
阅读次数:
250
- (void)setupTextField{ UITextField *tf = [[UITextField alloc] init]; tf.keyboardType = UIKeyboardTypeNumberPad; tf.frame = CGRectMak...
分类:
移动开发 时间:
2015-12-28 23:14:04
阅读次数:
337
pipe()学习例1: 进程内读写管道,代码如下:#include #include #include #include #include #include #include #include #include int main(int argc, char *argv[]){ int fd[...
分类:
其他好文 时间:
2015-12-28 23:14:44
阅读次数:
221
看来看来,还是以下这个实现最优雅。。其它的,要么NODE冗余,要么初始化丑陋。。。#!/usr/bin/env python# -*- coding: utf-8 -*-class Node: def __init__(self, initdata): self.__data = i...
分类:
编程语言 时间:
2015-12-28 23:15:50
阅读次数:
213
本文讲解了,在从eclipse工程迁移到Android Studio工程时,对于复杂的NDK工程应该如何处理的方法
分类:
移动开发 时间:
2015-12-28 23:16:40
阅读次数:
4332