删除如下文件:(可以继续试用30天) ~/Library/Preferences/com.ittybittyapps.Reveal.plist
分类:
移动开发 时间:
2015-09-13 23:14:12
阅读次数:
316
装饰( Decorator )模式又叫做包装模式。通过一种对客户端透明的方式来扩展对象的功能,是继承关系的一个替换方案。 ?抽象组件角色: 一个抽象接口,是被装饰类和装饰类的父接口。 ?package com.org.decorat...
分类:
其他好文 时间:
2015-09-13 23:15:51
阅读次数:
412
重写由final关键字决定,但受父类的访问权限限制 实现基于继承,所以实现父类的抽象方法必须可访问到,父类抽象方法不可为private 1、父类某方法能否被子类重写与此方法的访问级别无关 public protected private...
分类:
Web程序 时间:
2015-09-13 23:14:19
阅读次数:
547
#include<stdio.h>
#include<stdlib.h>
/*
*?数据结构:二叉查找树,即左孩子<父节点<右孩子
*?C语言实现
*?2015-9-13
*/
typedef?struct?TreeNode?*PtrToNode;
typedef?PtrToNode?Tree;
typedef?PtrTo...
分类:
编程语言 时间:
2015-09-13 23:12:18
阅读次数:
461
//
//??ViewController.m
//??OC11分类和协议
//
//??Created?by?Zoujie?on?15/9/13.
//??Copyright?(c)?2015年?Zoujie.?All?rights?reserved.
//
#import?"ViewController.h"
#import?"Fr...
分类:
其他好文 时间:
2015-09-13 23:14:02
阅读次数:
426
#include<map>
#include<iostream>
#include<string>
#include<vector>
using?namespace?std;
static?vector<string>?order;
static?map<string,?int?>?vis;
void?dfs(map<string,?vector<string>?>?...
分类:
编程语言 时间:
2015-09-13 23:13:36
阅读次数:
473
?? HashMap 和 HashSet 是 Java Collection Framework 的两个重要成员,其中 HashMap 是 Map 接口的常用实现类,HashSet 是 Set 接口的常用实现类。虽然 HashMap 和 HashSet 实现的接口规范不同,但它们底层的 ...
分类:
编程语言 时间:
2015-09-13 23:12:36
阅读次数:
483
第5课 大规模数据处理的难点 -- 内存和磁盘 单台Linux服务器瓶颈分析 1、查看平均负载 用top、uptime命令查看平均负载; 1、平均负载很低,系统吞吐量无法提升 --------->检查软件设置是否异常,网络、主机是否存...
分类:
Web程序 时间:
2015-09-13 23:12:13
阅读次数:
497
设置IP: vim /etc/network/interfaces 将以下内容: auto eth0 iface eth0 inet dhcp 修改为: auto eth0 #iface eth0 inet dhcp iface eth0 inet static address xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx gat...
分类:
系统相关 时间:
2015-09-13 23:11:57
阅读次数:
433
基本思想每个case的选择值作为键,处理过程做成函数委托存放进数据字典。用的时候根据之调用。下面上代码 封装的FuncSwitcher类 using?System;
using?System.Collections.Generic;
namespace?Test
{
????...
分类:
其他好文 时间:
2015-09-13 23:12:50
阅读次数:
502
你愿意为打开一个网页等待多长时间?我一秒也不愿意等。但是事实上大多数网站在响应速度方面都让人失望。现在越来越多的人开始建立自己的网站,博客,你的网页响应速度如何呢?在这篇文章中我们来介绍一下提高网页...
分类:
Web程序 时间:
2015-09-13 23:12:23
阅读次数:
577
有关微软技术方向的最新学习资源【2015-9月】...
分类:
其他好文 时间:
2015-09-13 23:11:01
阅读次数:
501
AppDelegate.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { /** 沙盒中文件夹: 1.Do...
分类:
移动开发 时间:
2015-09-13 23:11:26
阅读次数:
1166
1、在mysql 中建立一个数据库 test1 语句:create database test1 2、创建表examinfo create table examinfo( id int auto_increment not null, endtime datetime, primary key(id...
分类:
数据库 时间:
2015-09-13 23:11:43
阅读次数:
460
1,java类分解:import java.util.Calendar;import java.util.Date;public class Test01 { @SuppressWarnings("deprecation") public static void main(String[] arg....
分类:
其他好文 时间:
2015-09-13 23:09:15
阅读次数:
348
节点操作:一.节点类型根据DOM,XML文档中的一个成分都是一个节点。二.节点操作获取节点引用1.方式一: document.getElementById(); document.getElemengtByTagName();说明:这种方式直接查找节点,每次都会遍历文档中的所有节点,比较...
分类:
Web程序 时间:
2015-09-13 23:10:22
阅读次数:
292