现上一道面试题
public class MainClass {
public static void main(String[] args) {
Fu f = new Zi();
Zi z = new Zi();
System.out.println("f.num:"+f.num);
System.out.p...
分类:
编程语言 时间:
2015-03-31 14:51:22
阅读次数:
139
using UnityEngine;
using System.Collections;
public class move : MonoBehaviour {
GameObject go;
// Use this for initialization
void Start () {
go= GameObject.Find("c4"); //命名为c4的...
分类:
移动开发 时间:
2015-03-31 14:49:39
阅读次数:
134
// 待处理的流
ByteArrayOutputStream bao = new ByteArrayOutputStream();
// 定义文件根路径:TOMCAT的temp路径 + 时间戳
String baseDir = System.getProperty("java.io.tmpdir") + System.curren...
分类:
编程语言 时间:
2015-03-31 14:43:17
阅读次数:
123
DataTable DtProBaseList = new DataTable("DtProBaseList"); DtProBaseList.Columns.Add("Id", Type.GetType("System.String")); DtProB...
分类:
其他好文 时间:
2015-03-31 14:38:37
阅读次数:
127
1、数据库启动报错SQL> startupORACLE 例程已经启动。Total System Global Area 1887350784 bytesFixed Size 2176848 bytesVariable Size 13254022...
分类:
其他好文 时间:
2015-03-31 14:29:07
阅读次数:
158
转载自:http://blog.csdn.net/mal327/article/details/6458907Oracle用户下执行:$ sqlplus system/manager @ file.sql 执行sql脚本文件$ sqlplus system/manager 登录sqlplus,使用s...
分类:
数据库 时间:
2015-03-31 14:26:10
阅读次数:
221
Oracle关于日志文件基本操作1.查询系统使用的是哪一组日志文件:select * from v$log;2.查询正在使用的组所对应的日志文件:select * from v$logfile;3.强制日志切换:alter system switch logfile;4.查询历史日志:select ...
分类:
数据库 时间:
2015-03-31 14:21:31
阅读次数:
148
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
分类:
数据库 时间:
2015-03-31 14:18:55
阅读次数:
178
一、NFS服务简介 NFS 是Network File System的缩写,即网络文件系统。一种使用于分散式文件系统的协定,由Sun公司开发,于1984年向外公布。功能是通过网络让不同的机器、不同的操作系统能够彼此分享个别的数据,让应用程序在客户端通过网络访问位于服务器磁盘中的数据,是在类Unix....
分类:
系统相关 时间:
2015-03-31 14:18:55
阅读次数:
159
希望弄懂:一. 泛型的好处二. 表述三. 的作用四. ,作为参数类型的作用五. wildcard嵌套 一. JDK1.5 引入了泛型,好处:1. 编译时,类型检查2. 避免类型转换例如,ArrayList list = new ArrayList();list.add("str1")System.o...
分类:
编程语言 时间:
2015-03-31 14:13:42
阅读次数:
170