今天要为大家带来一款由jquery实现的整屏切换特效,在右侧有圆型小标,每点一个切换一屏。当然,你也可以滚动鼠标来切换页面。效果非常好。我们看下效果吧在线预览源码下载html代码: First page ...
分类:
Web程序 时间:
2014-09-15 09:53:38
阅读次数:
201
Implement strStr()Implement strStr().Returns a pointer to the first occurrence of needle in haystack, ornullif needle is not part of haystack.实现String...
分类:
其他好文 时间:
2014-09-15 00:54:37
阅读次数:
185
主要内容
高阶过程:以过程为参数和/或返回值的过程
lambda 表达式
let 表达式
用过程作为解决问题的通用方法
求函数的 0 点
求函数的不动点
返回过程值
过程是语言里的一等公民 (first-class object)
1.3.1高阶过程
过程是抽象,一个过程描述了一种对数据的复合操作,如求立方过程:(define (cube...
分类:
其他好文 时间:
2014-09-14 18:03:27
阅读次数:
277
C++中处理split的函数,首先要了解几个函数C++中string自己带的find_first_of 或者find_first_not_offind_last_of 或者find_last_not_of函数原型为:可以用来超找字符串,char,char *三种类型string (1)size_t ...
分类:
编程语言 时间:
2014-09-14 14:03:47
阅读次数:
346
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 1 /** 2 ...
分类:
其他好文 时间:
2014-09-13 20:03:15
阅读次数:
228
//HelloWorld.h
#include "cocos2d.h"
#include "ui/CocosGUI.h"
#include "First.h"
#include "Second.h"
#include "Third.h"
USING_NS_CC;
using namespace ui;
enum Tag
{
FIRST = 1,
SECOND,
THIRD...
分类:
其他好文 时间:
2014-09-13 17:23:35
阅读次数:
294
无聊,看看《Head First Python》打发一下时间。感觉这本书很一般,可以无聊的时候翻翻。每一章页数很多,但都没讲什么东西。先看第五章。记录一下知识点:f.readline():读取文件的一行数据split():可以将字符串按给定的分隔符拆分为列表sort():将列表中的数据从小到大排序,...
分类:
编程语言 时间:
2014-09-13 17:13:25
阅读次数:
226
今后的stl算法部分就不贴cpluplus的原文了,简要的介绍为主。
generate原型:
std::generate
template
void generate (ForwardIterator first, ForwardIterator last, Generator gen);
该函数是使用gen函数产生的值填充范围内元素的值。
其行为类似如...
分类:
其他好文 时间:
2014-09-13 15:58:05
阅读次数:
210
前一篇文章中完成了School 数据模型,接下来你将学习如何读取和显示相关的数据——这里指Entity Framework加载至导航属性中的数据。
延迟、预先和显示加载相关数据
Entity Framework可以通过多种方法向实体的导航属性中加载数据
延迟加载(Lazy loading) 当实体第一次被读取时,相关数据并不会被检索。但是,当你第一次访问导航属性时,该导航属性所需的数据会自动加载。这是向数据库发送多个查询语句的结果——一次是读取实体本身,接着是每次与被检索的实体相关的数据。DbContext...
分类:
Web程序 时间:
2014-09-13 14:40:35
阅读次数:
347
官方定义:Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web.即:Bootstrap 是最受欢迎的 HTML、CSS...
分类:
Web程序 时间:
2014-09-12 23:26:04
阅读次数:
284