之前写的过程中忽略了这两个比较基础的部分,这里补上
一、控制流
总的来说使用方式和C,C++,Objective C等差不多
这里讲解可能会少一点,大家实际写点代码就会用了,很简单
有一点特别要注意的是,swift中的条件表达式的结果一定是Bool类型的
也就是说
var a = 19
if a{
}
这样的表达式是不对的,因为a是Int类型
1、if
if boo...
分类:
编程语言 时间:
2014-10-26 14:25:26
阅读次数:
175
Paid Roads
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 5481
Accepted: 1947
Description
A network of m roads connects N cities (numbered from 1 to N). T...
分类:
其他好文 时间:
2014-10-26 14:25:28
阅读次数:
112
Given an unsorted integer array, find the first missing positive integer.
For example,
Given [1,2,0] return 3,
and [3,4,-1,1] return 2.
Your algorithm should run in O(n) time and uses constant...
分类:
其他好文 时间:
2014-10-26 14:25:50
阅读次数:
177
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
For example,
Given [0,1,0,2,1,0,1,3,2,1,2,1]...
分类:
移动开发 时间:
2014-10-26 14:26:31
阅读次数:
187
Tomcat 官方网站上下载需要的 Mac 版本,确定 Mac 上 Java 版本与之对应。
解压 Tomcat 到想安装到的位置,打开终端,输入执行授权命令:
sudo chown -R 当前用户名:staff /tomcat目录
或者
sudo chown -R 当前用户名:admin /tomcat目录
完成后,进入 Tomcat/bin 目录下执行:
./catalina.sh...
分类:
系统相关 时间:
2014-10-26 14:26:00
阅读次数:
160
Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Your goal i...
分类:
其他好文 时间:
2014-10-26 14:25:29
阅读次数:
172
footer固定于页面底部,水平居中,动态变化效果实现(使用JS)...
分类:
Web程序 时间:
2014-10-26 14:24:02
阅读次数:
411
October 23, 2014 19:00~21:00 Feishang Cafe
Still vague listening, still little speaking. Nothing has been improved.
Members' Speeches
There were four members giving their wo...
分类:
其他好文 时间:
2014-10-26 14:23:31
阅读次数:
201
Yii Framework2.0开发教程(5)数据库mysql函数...
分类:
数据库 时间:
2014-10-26 14:24:11
阅读次数:
321
EL表达式的使用(5个 问题)
JSTL标签的使用(5个问题)
什么是EL,它能做什么用的?
EL全名为Expression Language在JSP页面使用
格式${一个表达式}
例子${requestScope.customer.id}
功能:
1.才四个域对象中取出属性数据显示
(pageContext.request.session.application)
...
分类:
Web程序 时间:
2014-10-26 14:25:19
阅读次数:
269
int main(){
//2.控制流
//2.1 if语句
//1.
if(expression){
}
//2.
if(expression){
}else{
}
//3.可以有0个或是多个else if,最后一个else也可省略
if(expression){
cx
}else if(expression){
}else{...
分类:
移动开发 时间:
2014-10-26 14:24:53
阅读次数:
236
//3.C语言特性
//3.1函数的定义
//函数返回类型 函数名(参数){
//dosomthing
//}一般的函数定义都是这样的,
//有一种古老的函数定义方式,另外起一行对参数进行说明
void printMesg(msg,loopNum)
int loopNum;
int msg;
{ int i;
for(i = 0;i<loo...
分类:
移动开发 时间:
2014-10-26 14:23:26
阅读次数:
192
对于软件开发者来说,理解同源策略,可以很好地解决了一个痛点, 不同域名下的资源读写 !
我写了新文章《同源策略——浏览器的安全卫士》。古代的楚河汉界明确地规定了双方的活动界限,如果没有这些界限,天下必将大乱。同样,在我们的浏览器,也有着一些界限和策略,才让 Web 世界之所以能如此美好地呈现在我们面前。...
分类:
其他好文 时间:
2014-10-26 14:25:02
阅读次数:
221
The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.
Given an integer n, return all distinct solutions to the n-queens puzzle.
...
分类:
其他好文 时间:
2014-10-26 14:23:18
阅读次数:
164
5 进行session和cookie分析 ,并在前后区分session和cookie;
记住登录状态
这样下次再登录网站的时候,就不用重复输入用户名和密码。
是浏览器的cookie把状态给记住了。
制作表单:
...
分类:
其他好文 时间:
2014-10-26 14:24:17
阅读次数:
233
在使用eclipse或MyEclipse编程时,经常遇到部分文件打开后出现乱码的情况(特别是在导入项目后)
1:右击项目选择properties->Resource>Other选择UTF-8,apply->Ok即可
这种方式一般只是改变java文件的编码
2:Windows -> Preferences -> General -> Content Types
在右边的窗口中点击"text...
分类:
系统相关 时间:
2014-10-26 14:22:56
阅读次数:
195
【题目】
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it...
分类:
其他好文 时间:
2014-10-26 14:21:29
阅读次数:
243