python提供了两种特别的方法来定义函数的参数:1. 位置参数 *args,把参数收集到一个元组中,作为变量args >>>def show_args(*args): #定义函数 print args>>>show_agrs("hello", "world") #调用函数输出:("hell...
分类:
编程语言 时间:
2014-07-19 21:09:57
阅读次数:
275
一、大小写转换 1、strtolower()--转换为小写。 echo strtolower("Hello WORLD!"); //hello world! 2、strtoupper()--转换为大写。 echo strtoupper("Hello WORLD!"); //HELLO W...
分类:
Web程序 时间:
2014-07-19 20:13:39
阅读次数:
263
通常来说,编程语言教程中的第一个程序应该在屏幕上打印“Hello, world”。在 Swift 中,可以用一行代码实现: 1 println("hello, world")如果你写过 C 或者 Objective-C 代码,那你应该很熟悉这种形式——在 Swift 中,这行代码就是一个完整的程序。...
分类:
其他好文 时间:
2014-07-16 19:24:39
阅读次数:
282
上半年,公司的一个项目,本身我是不喜欢Android开发的,但是学习到的东西总需要整理一下。从iOS转到Android,真心有些不习惯。就IDE来说,eclipse比Xcode差的不是一点半点。Android模拟器竟然还要开机!我勒个去。。 今天写个最简单的Android NDK的小栗子。首先,什么...
分类:
移动开发 时间:
2014-07-16 19:07:06
阅读次数:
213
1. 定义http://en.wikipedia.org/wiki/Adapter_patternAn adapter helps two incompatible interfaces to work together. This is the real world definition for ...
分类:
其他好文 时间:
2014-07-16 19:01:47
阅读次数:
345
package mainimport "fmt"func main() { fmt.Printf("Hello, world.\n")}
分类:
其他好文 时间:
2014-07-16 17:38:26
阅读次数:
156
Struts2常用标签总结 一 介绍 1.Struts2的作用 Struts2标签库提供了主题、模板支持,极大地简化了视图页面的编写,而且,struts2的主题、模板都提供了很好的扩展性。实现了更好的代码复用。Struts2允许在页面中使用自定义组件,这完全能满足项目中页面显示复杂,多变的需求...
分类:
其他好文 时间:
2014-07-16 15:07:42
阅读次数:
326
Description
Problem C
SAM I AM
Input: Standard Input
Output: Standard Output
The world is in great danger!! Mental's forces have returned to Earth to eradicate humankind. Our last hope to ...
分类:
其他好文 时间:
2014-07-16 10:15:05
阅读次数:
217
Go对web服务器的编写提供了非常好的支持,标准库中提供了net/http包来方便编写服务器。许多教程和书籍在讲到用Go编写web服务器时都会直接教新手用http包写一个最简单的hello world服务器,例子差不多都会像这样:
// 这就是用Go实现的一个最简短的hello world服务器.
package main
import "net/http"
func main() {
h...
分类:
其他好文 时间:
2014-07-16 09:43:16
阅读次数:
216
Ubiquitous Religions
Time Limit: 5000MS
Memory Limit: 65536K
Total Submissions: 23168
Accepted: 11404
Description
There are so many different religions in the world t...
分类:
其他好文 时间:
2014-07-16 09:04:14
阅读次数:
226