static的作用 1.隐藏 当我们编译多个文件时,所有未加static前缀的全局变量和函数都具有全局可见性,其他的源文件也能访问。如,我们有源文件source1.cpp定义了一个全局变量i和函数Func1 //source1.cpp2 int i = 0;3 4 void Func()5...
分类:
编程语言 时间:
2015-03-30 22:52:26
阅读次数:
209
add by zhj: 有些地方不正确,有时间再改吧原文:Python Cheat SheetCheat sheet of Python. Some basic concepts for Python programmer need to know.Python Naming Styles# see...
分类:
编程语言 时间:
2015-03-30 22:50:27
阅读次数:
340
Apache的配置文件配置文件所在目录:/etc/httpd/conf/主配置文件:httpd.conf旧版本中的配置文件:资源配置文件:srm.conf访问许可权配置文件:access.conf AccessConfig和ResourceConfig为了对旧版本的Apache兼容, Apache服...
分类:
Web程序 时间:
2015-03-30 22:50:20
阅读次数:
191
结队成员:范德一,赵永恒一.题目返回一个整数数组中最大子数组的和。要求:输入一个整形数组,数组里有正数也有负数。数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和。如果数组A[0]……A[j-1]首尾相邻,允许A[i-1],……A[n-1],A[0]……A[j-1]之和最大。同时返回最大...
分类:
编程语言 时间:
2015-03-30 22:52:05
阅读次数:
235
NSNotificationCenter(通知中心)【注意】需再dealloc中移除观察者获取通知中心单例对象 NSNotificationCenter *center=[NSNotificationCenter defaultCenter];常用方法: 1.注册观察者 - (void)add...
分类:
其他好文 时间:
2015-03-30 22:51:05
阅读次数:
184
在ortp中实现了一个通用的队列,每一个队列包括三个实体,分别是队列、消息块和数据块,这三个实体分别对应queue_t、msgb和datab结构体。queue_t的定义如下所示:typedef struct _queue {mblk_t _q_stopper; /* 消息队列头 */int q_.....
分类:
其他好文 时间:
2015-03-30 22:50:44
阅读次数:
195
ListView通过一个Adapter来完成数据和组件的绑定。以ListActivity为例,它集成自Activity,里面包含有一个ListAdapter和一个ListView。绑定的操作通过setListAdapter来完成。本文主要通过源码,来说明,具体的绑定过程究竟是如何进行的,以及conv...
分类:
其他好文 时间:
2015-03-30 22:49:16
阅读次数:
221
new,virtual,override三者的区别 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks...
父页面: js:function closeIframe(){ $("#win2").hide();//关闭div}iframe弹出页面(1.html):关系iframe外层的divjs:function closeParent(){ window.parent.closeIfra...
分类:
Web程序 时间:
2015-03-30 22:50:33
阅读次数:
116
JavaScript能够实现的面向对象的特征有: ·公有属性(public field) ·公有方法(public Method) ·私有属性(private field) ·私有方法(private field) ·方法重载(method overload) ·构造函数(constructor) ...
分类:
Web程序 时间:
2015-03-30 22:50:40
阅读次数:
247
实测可用:sudo arecord --duration=10 --device=plughw:1,0 --format=cd aaa.wavsudo arecord --duration=10 --device=plughw:1,0 --format=S16_LE --rate=44000 --c...
分类:
其他好文 时间:
2015-03-30 22:50:12
阅读次数:
338
1.从phpMyAdmin官网下载最新版本,并解压到apache可自动访问文件的文件夹内。如AppServ是放在www下。2.Call to undefined function mb_detect_encoding() 错误运行时,报这个错误,是php默认的extension中的相关dll文件没有...
分类:
Web程序 时间:
2015-03-30 22:49:12
阅读次数:
140
转自:http://blog.sina.com.cn/s/blog_83940dfb0100veas.html用于Activity之间的数据传递 在起始Activity中,发送数据 protected void onCreate(Bundle saveInstanceState){ ...
分类:
其他好文 时间:
2015-03-30 22:48:51
阅读次数:
164
Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longest pa...
分类:
其他好文 时间:
2015-03-30 22:49:58
阅读次数:
162
简单的GCDTime Limit:1000MS Memory Limit:32768KTotal Submit:12 Accepted:4 Description 问题很简单(洁),有 T 个询问,每次询问 a,b,d ,问有多少对 (x,y) 满足 1 ≤ x ≤ a, 1 ≤ y ≤ b ,且 ...
分类:
其他好文 时间:
2015-03-30 22:48:58
阅读次数:
208
11111package com.example.myviewpager;import android.app.Activity;import android.os.Bundle;import java.util.ArrayList;import java.util.List;import andr...
分类:
其他好文 时间:
2015-03-30 22:47:57
阅读次数:
133
1.第一步: 首页我们先创建两个mvc项目,发布到2个指定的文件夹里 例如 d:\ct1 和d:\ct2 2.第二步: 打开IIS,如下图 右击网站添加网站,添加你的网站名称ct1,指定你的网站的路径d:\ct1,指定应用程序池,选好端口号80。点击确定,建好网站ct1。 3.第三步: 开始设置子网...
分类:
Web程序 时间:
2015-03-30 22:49:37
阅读次数:
226