/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变量 3 private int x=1; 4 //定义外部类函数 5 public void methodOut(){ 6 System.out.println(...
分类:
编程语言 时间:
2014-12-22 22:37:13
阅读次数:
252
男人的标准体重是:体重(kg)=身高(cm)-100。女人的标准体重是:体重(kg)=身高(cm)-110。上下浮动3公斤属正常要求输入性别、身高和体重,输出正常,偏胖,偏瘦 1 using System; 2 using System.Collections.Generic; 3 using Sy...
分类:
其他好文 时间:
2014-12-22 22:35:59
阅读次数:
194
#include #include using namespace std;class Pen {public: virtual void write(int color = 0) { coutwrite(); return 0;}输出:write with col...
分类:
编程语言 时间:
2014-12-22 22:35:45
阅读次数:
315
/** * 生成缩略图 * @author yangzhiguo0903@163.com * @param string 源图绝对完整地址{带文件名及后缀名} * @param string 目标图绝对完整地址{带文件名及后缀名} * @param int 缩略图宽{0...
分类:
Web程序 时间:
2014-12-22 22:35:51
阅读次数:
247
引言 MapReduce作出保证:进入每个Reducer的数据行都是有序的(根据数据行的键值进行排序)。MapReduce将Mapper的输出进行排序并传递给Reducer作为输入的过程称为Shuffle。在很多场景下,Shuffle是整个MapReduce过程的核心,也是“奇迹”发生的地方,如下图...
分类:
其他好文 时间:
2014-12-22 22:34:02
阅读次数:
1516
一、原始写法模块就是实现特定功能的一组方法。只要把不同的函数(以及记录状态的变量)简单地放在一起,就算是一个模块。 function m1(){ //... } function m2(){ //... }上面的函数m1()和m2(),组成一个模块。使用的时候,直接调用就行了。这...
分类:
其他好文 时间:
2014-12-22 22:36:02
阅读次数:
136
package com.yarin.android.Examples_04_23;import android.app.Activity;import android.app.Notification;import android.app.NotificationManager;import and...
分类:
其他好文 时间:
2014-12-22 22:34:02
阅读次数:
193
最近没什么实质性的工作,正好有点时间,就想学学别人的代码。也看过一点源码,算是有了点阅读的经验,于是下定决心看下spring这种大型的项目的源码,学学它的设计思想。 手码不易,转载请注明:xingoo 这篇博文你可以了解到: 1 Spring jar包以及源码使用 2 简单的spring...
分类:
编程语言 时间:
2014-12-22 22:33:30
阅读次数:
478
Download the android source from china mirrors以前都是从Google的站点下载同步更新的,但是现在有了国内的镜像站点就好多了帮助 https://wiki.tuna.tsinghua.edu.cn/MirrorUsage/android仓库地址:git:...
分类:
移动开发 时间:
2014-12-22 22:34:09
阅读次数:
880
1.问题:用官方的例子,首页可以正常打开,但比如说 /signup,contact/index 这样的连接都是出现404 file not find,这样的错误。以上问题在Apache web server是好的。解决方法:URL重写导致。直接访问localhost/index.php?_url=/...
分类:
Web程序 时间:
2014-12-22 22:33:47
阅读次数:
173
document.addEventListener('WeixinJSBridgeReady', function onBridgeReady() { window.shareData = { "timeLineLink": "", ...
分类:
微信 时间:
2014-12-22 22:34:30
阅读次数:
313
照猫画虎,写了一个函数,并加了一个快捷键,为octopress文章增加一些特定的内容,好在文章列表和首页处显示文章简介或摘要,并给文章建立目录。之所以把这两部分合并在一起,是因为加了目录后,目录就成了文章最前面的内容,这时目录会作为文章开头内容显示在首页,不大好看,所以这两个东东一般是要配合使用的。...
分类:
系统相关 时间:
2014-12-22 22:32:26
阅读次数:
214
老版本:String {\w+}=>Public String \12012中:String (\w+)=>Public String $1
分类:
其他好文 时间:
2014-12-22 22:33:16
阅读次数:
139
1.1 Context descriptorsTomcat4中的Manager和Admin管理工具其实就是利用它来部署的。在Tomcat5中提出了Context descriptor这个概念,且为其配置了一个专有目录,而不像Tomcat4那样大杂烩一般地放置在$appBase目录下。Context ...
分类:
其他好文 时间:
2014-12-22 22:32:16
阅读次数:
261
Hibernate查询uodate-megre-saveorupdate-delete方法使用update这个方法的使用1:先加载然后再修改/** * 修改通过get方法获得的持久化对象 */ private static void update1() { Con...
分类:
Web程序 时间:
2014-12-22 22:33:44
阅读次数:
246
Gearman任务分布系统部署windows平台_使用Cygwin
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ConsoleApplication1 7 { 8 class 闰平年 ...
分类:
其他好文 时间:
2014-12-22 22:31:55
阅读次数:
142