是构造方法创建的对象吗?
package com.java.essence_36;
import java.util.ArrayList;
import java.util.List;
/**
* Created by lw on 14-5-23.
*
* 构造器做了什么?
* 对象是谁创建的?构造器?
* this到底是什么?
*/
class SupperCons...
分类:
编程语言 时间:
2014-05-26 04:57:54
阅读次数:
544
Point.h
/*
* Point.h
*
* Created on: 2014年5月22日
* Author: John
*/
#include
using namespace std;
#ifndef POINT_H_
#define POINT_H_
class Point {
private:
int x;
int y;
...
分类:
编程语言 时间:
2014-05-26 03:19:07
阅读次数:
399
以前写的代码//// main.c// cTest//// Created by Zizhu on
13-10-8.// Copyright (c) 2013年 Zizhu. All rights reserved.//#include #define N
(10)void quickSor...
分类:
编程语言 时间:
2014-05-26 01:27:07
阅读次数:
340
1、用SYS用户以SYSDBA身份登录SQL
Plus,使用DBA_USERS视图查看用户信息:SELECT USERNAME, ACCOUNT_STATUS, CREATED FROM
DBA_USERS;--用户名,账户状态,创建用户的日期2、创建用户、删除用户CREATE USER IDEN....
分类:
数据库 时间:
2014-05-26 00:56:24
阅读次数:
334
单链表是一种链式存储结构,它可以通过一组任意的存储单元来存储线性表中的数据元素。头文件
声明//// linklist.h// Datastructure//// Created by zhou on 14-5-25.// Copyright
(c) 2014年 zhou. All righ...
分类:
其他好文 时间:
2014-05-25 20:06:02
阅读次数:
227
//
// fs_loop_queue.h
// fsnet
//
// Created by Vincent on 14-5-22.
// Copyright (c) 2014年 Vincent. All rights reserved.
//
#ifndef fsnet_fs_loop_queue_h
#define fsnet_fs_loop_queue_h
#include "...
分类:
其他好文 时间:
2014-05-24 23:36:41
阅读次数:
450
/**
* Created by W.J.Chang on 2014/5/23.
*/
d = 1;
var a = {a:'b',c:'d'};
// 枚举Keys
for(var i in a) {
console.log(i);
}
console.log("----");
Object.prototype.d = 'e';
for(var i in a ){
c...
分类:
Web程序 时间:
2014-05-24 21:13:31
阅读次数:
310
//
// fs_stream.h
// fsnet
//
// Created by Vincent on 14-5-22.
// Copyright (c) 2014年 Vincent. All rights reserved.
//
#ifndef fsnet_fs_stream_h
#define fsnet_fs_stream_h
#include "fs_define.h"...
分类:
其他好文 时间:
2014-05-24 18:19:34
阅读次数:
372
/**
* Created by W.J.Chang on 2014/5/23.
*/
// 判读是否是数组的方法
console.log(Array.isArray(new Array));
console.log(Array.isArray([]));
var arr = [1,2,3];
// 遍历方法
arr.forEach(function (v){
console.log...
分类:
Web程序 时间:
2014-05-24 18:01:08
阅读次数:
305
1 // 2 // LWTViewController.m 3 // 应用管理--九宫格 4 // 5
// Created by apple on 14-5-22. 6 // Copyright (c) 2014年 lwt. All rights
reserved. 7 /...
分类:
Web程序 时间:
2014-05-24 10:04:20
阅读次数:
289