一.window对象 1. window用以代表整个浏览器对象,用以这个对象对浏览器窗口进行操作、导航或者打开新的窗口、弹出系统对话框。 moveBy(dx,dy) 把浏览器窗口相对于当前位置水平移动dx像素,垂直移动dy像素。 moveTo(x,y)移动浏览器窗口,使它的左上角位于用户屏幕的(.....
1 int main(int argc, const char * argv[]) { 2 @autoreleasepool { 3 4 5 //复制文件 6 7 8 //找到原来的文件...
分类:
其他好文 时间:
2015-07-15 22:32:16
阅读次数:
108
ASP.NETMVCOverviewTheModel-View-Controller(MVC)architecturalpatternseparatesanapplicationintothreemaincomponents:themodel,theview,andthecontroller.The...
分类:
Web程序 时间:
2015-07-15 22:30:20
阅读次数:
116
相信做前端的都知道了,input[type=file]和其他输入标签不一样,它的事件必须是在触发自身元素上,而不能是其他元素。所以不能简单的把input隐藏,放个button上去。 点击这里上传文件/*a upload */.a-upload { padding: 4px 10px; ...
分类:
Web程序 时间:
2015-07-15 22:31:27
阅读次数:
200
今天My partner问我一个让他头疼的Java question,求输出结果:/** * * @author DreamSea 2011-11-19 */ public class IntegerTest { public static void main(String[] args) { ob...
分类:
编程语言 时间:
2015-07-15 22:29:01
阅读次数:
128
迭代器模式提供一种方法顺序访问一个聚合对象中的各个元素,而不暴露该对象的内部表示Iteratorpackage com.hml.iterator;public interface Iterator { public Object first(); public Object ne...
分类:
其他好文 时间:
2015-07-15 22:30:38
阅读次数:
138
default.properties在Struts 2的核心jar包-struts2-core中,有一个default.properties的默认配置文件。里面配置了一些全局的信息,比如:struts.enable.DynamicMethodInvocation = true,-动态方法调用,为tr...
分类:
其他好文 时间:
2015-07-15 22:28:27
阅读次数:
95
http://www.blogjava.net/shiwenfeng/archive/2009/12/30/307731.htmlBeanutils用了魔术般的反射技术,实现了很多夸张有用的功能,都是C/C++时代不敢想的。无论谁的项目,始终一天都会用得上它。我算是后知后觉了,第一回看到它的时候居然...
分类:
其他好文 时间:
2015-07-15 22:29:38
阅读次数:
117
学习来自《极客学院》 1 import Foundation 2 3 //1.定义类和结构体 4 /* 5 [修饰符]calss 类名{ 6 零到多个构造器 7 零到多个属性 8 零到多个方法 9 零到多个下标10 }11 修饰符可以是:private public...
分类:
编程语言 时间:
2015-07-15 22:30:23
阅读次数:
120
控制器代码:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using MvcApplication1.Models;namespace Mvc...
分类:
Web程序 时间:
2015-07-15 22:28:06
阅读次数:
203
这道题和bzoj2588很像,是动态区间第K大的变形。先求DFS序,一棵子树的DFS是连续的,不妨记为[l,r],我们维护前缀和,在l处+1,在r+1处-1。变成动态区间第K大的经典问题,用树状数组套线段树。#include#include#include#include#include#inclu...
分类:
其他好文 时间:
2015-07-15 22:30:45
阅读次数:
166
前言TinyXML是一个开源的解析XML的解析库,能够用于C++,能够在Windows或Linux中编译,使用TinyXML进行C++ XML解析,使用简单,容易上手。这个解析库的模型通过解析XML文件,然后在内存中生成DOM模型,从而让我们很方便的遍历这棵XML树。DOM模型即文档对象模型,是将整...
分类:
编程语言 时间:
2015-07-15 22:28:44
阅读次数:
173
Problem Definition: Given an integer, write a function to determine if it is a power of two.Solution:class Solution: # @param {integer} n # @re...
分类:
其他好文 时间:
2015-07-15 22:27:51
阅读次数:
90
[cpp]view plaincopy//!需要包含de头文件#include#includeintstat(constchar*filename,structstat*buf);//!prototype,原型structstat{dev_tst_dev;/*IDofdevicecontaining...
分类:
其他好文 时间:
2015-07-15 22:30:09
阅读次数:
170
如何获取值----三种方式(属性驱动,对象驱动,模型驱动)A:属性驱动必须生成get,set方法B:对象驱动给对象也必须生成get,set方法c模型驱动模型驱动需要action去实现一个ModelDrvien(),并且重写一个getModel()方法
分类:
其他好文 时间:
2015-07-15 22:29:41
阅读次数:
111
//// main.m// LessonCondition//// Created by laouhn on 15/7/15.// Copyright (c) 2015年 David. All rights reserved.//#import int main(int argc, cons...
分类:
移动开发 时间:
2015-07-15 22:28:08
阅读次数:
141
Tansact-SQL T-SQL1.创建数据库 create database MyDB on primary ( Name=MyDB, FileName="D:\MyDB.MDF" ), --创建主数据文件叫MyDB,放在D盘中. ( Name=MyDB1, FileName="E:\MyDB1...
分类:
数据库 时间:
2015-07-15 22:29:48
阅读次数:
217