1、点语法2、成员变量的作用域3、@property和@synthesize点语法点语法的本质还是方法调用1 Person *p = [Person new];2 p.age = 10;//点语法3 p.name = @"li si";//点语法4 //[p setN...
分类:
移动开发 时间:
2015-04-17 15:27:20
阅读次数:
192
在Servlet中javax.servlet.GenericServlet类继承自java.lang.Object实现了Serializable,,servlet ,ServletConfig 三个接口被继承对象javax.servlet.http.HttpServlet(这是我们常用的一个类)但仔...
分类:
其他好文 时间:
2015-04-17 15:28:59
阅读次数:
144
标量函数 1、大写:upper(); select upper(列名) from 表名; 2、小写:lower(); select lower(列名) from 表名; 3、截取字符串:substring(); select substring(列名,...
分类:
数据库 时间:
2015-04-17 15:27:59
阅读次数:
123
word-wrap:css的 word-wrap 属性用来标明是否允许浏览器在单词内进行断句,这是为了防止当一个字符串太长而找不到它的自然断句点时产生溢出现象。word-break:css的 word-break 属性用来标明怎么样进行单词内的断句。首先,何谓单词内断句?当然这里指的都是西文单词。这...
分类:
其他好文 时间:
2015-04-17 15:28:10
阅读次数:
136
玩转Vim-札记(一) 简介 在这个蔚蓝色的星球上,流传着两大神器的传说:据说Emacs是神的编辑器,而Vim是编辑器之神。一些人勇敢地拾起了Vim或Emacs,却发现学习曲线陡峭而漫长,还是有一些人留下来了,坚定地守护着这两大神器。一些说葡萄太酸的人想离开又不甘心,总是问:它们到底神在哪里啊?.....
分类:
系统相关 时间:
2015-04-17 15:27:37
阅读次数:
156
PS:Façade模式注重简化接口,Adapter模式注重转换接口,Bridge模式注重分离接口(抽象)与其实现,Decorator模式注重稳定接口的前提下为对象扩展功能。Facade模式 Facade模式要求一个子系统的外部与其内部的通信必须通过一个统一的Facade对象进行。Facade模式提....
分类:
其他好文 时间:
2015-04-17 15:28:55
阅读次数:
150
题目:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your al...
分类:
其他好文 时间:
2015-04-17 15:27:16
阅读次数:
100
#include "stdafx.h"#include #include int main(){ FILE *readfile,*writefile; char ch; fopen_s(&readfile,"ReadMe.txt","r"); fopen_s(&writef...
分类:
其他好文 时间:
2015-04-17 15:28:06
阅读次数:
123
maven+springmvc错误 JAX-RS (REST Web Services) 2.0 can not be installed项目problem提示错误JAX-RS (REST Web Services) 2.0 can not be installed : One or more co...
分类:
编程语言 时间:
2015-04-17 15:25:55
阅读次数:
1854
Typical greedy\recursion algorithm.#include #include #include #include #include #include using namespace std;struct Node{ Node() : pinx(0), nodeCnt...
分类:
其他好文 时间:
2015-04-17 15:28:45
阅读次数:
168
using UnityEngine;using System.Collections;public class ModelsPosChange : MonoBehaviour { RaycastHit hit; private Transform Icon; bool isMove...
分类:
移动开发 时间:
2015-04-17 15:27:12
阅读次数:
205
// IOCP.cpp : Defines the entry point for the console application.////#include "stdafx.h"#include #include #include #pragma comment(lib, "WS2_32.lib")...
分类:
其他好文 时间:
2015-04-17 15:26:12
阅读次数:
211
从alphapixel网站下载了OSG3.0.1VS2010x64版本的库,但是里面不包括osgQt模块,于是得自己编译64位电脑,自己编译好64位Qt4.8.2,假设编译好的64位Qt位置是C:\Qt\build\x64,里面有bin,lib,include(据了解,Qt官网没有提供Qt4.8.2...
分类:
其他好文 时间:
2015-04-17 15:28:13
阅读次数:
2653
declare @subject nvarchar(50)set @subject=(select Subject from dbo.Scores where ID=1) --select @subject=Subject from dbo.Scores where ID=1--标量 标量就是单值....
分类:
数据库 时间:
2015-04-17 15:27:30
阅读次数:
168
Given an integern, return the number of trailing zeroes inn!.Note:Your solution should be in logarithmic time complexity.思路:编程之美里有,就是找因子5的个数。int trail...
分类:
其他好文 时间:
2015-04-17 15:27:58
阅读次数:
106
意动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B, B吃C,C吃A。现有N个动物,以1-N编号。每个动物都是A,B,C中的一种,但是我们并不知道它到底是哪一种。有人用两种说法对这N个动物所构成的食物链关系进行描述:第一种说法是"1 X Y",表示X和Y是同类。第二种说法是...
分类:
其他好文 时间:
2015-04-17 15:27:41
阅读次数:
101
JavaScript中关于数组去重复的方式很多,下面汇总了常见的几种实现方式。 1 /*实现一:基于原型扩展*/ 2 Array.prototype.removeDuplicate = function() { 3 var arrObj = {}, 4 newArr = []...
分类:
编程语言 时间:
2015-04-17 15:25:30
阅读次数:
143