引例:先看这个源码,函数传递后由于传递的是副本所以真正的值并没有改变。源码如下:using System;using System.Collections.Generic;using System.Text;namespace refout参数学习{ class Program { ...
分类:
其他好文 时间:
2014-08-11 17:45:52
阅读次数:
219
注意点1、环境变量不能有空格,比如C:\Program Files2、JAVA_HOME:D:\Java\jdk1.7.0_67------------->注意不能加;分号
分类:
编程语言 时间:
2014-08-11 00:15:10
阅读次数:
241
文章转自:http://www.wzsky.net/html/Program/DataBase/74799.html近期来,FreeList的重要作用逐渐为Oracle DBA所认识,网上也出现一些相关的讨论。本文以FreeList为线索对Oracle的存储管理的原理进行较深入的探讨,涉及Oracl...
分类:
数据库 时间:
2014-08-11 00:08:41
阅读次数:
337
Write a program that reads a file, breaks each line into words, scripts whitespace and punctuation from the words, and converts them to lowercase. Mod...
分类:
其他好文 时间:
2014-08-10 23:51:20
阅读次数:
278
问题:I am trying to install apache maven 3 in Ubuntu 12.04 lts. What I did was open the terminal then I typed the following commandsexport M2_HOME=/usr/...
进程管理什么是程序?program 程序:完成某个功能的一段代码的集合什么是进程? 进程是程序运行之后,在内存中的状态如何产生一个进程? 执行一个程序或者命令就可以产生一个进程提到进程,不得不说一个目录 /proc:是一个虚拟的文件系统,这个目录下的文件和目录都是保存在内..
分类:
系统相关 时间:
2014-08-10 19:00:11
阅读次数:
545
SCons中,windows下调用env.Program("hello.c"),就可以调用cl和link等工具,自动完成编译链接;使用env.Jar(target=‘hello.jar‘,source=[‘hello.java‘]),把文件用Jar工具压缩...为了搞清如何集成这些工具,查看了一下源代码。SCons的模块文件一般安装在Python的Lib\site-packag..
分类:
其他好文 时间:
2014-08-10 18:55:02
阅读次数:
232
原地址:http://www.myexception.cn/program/1399860.html在MAC下调试运行暗黑全世界客户端及部分代码注解(基于Firefly)在MAC下调试运行暗黑世界客户端及部分代码注解(基于Firefly)目前有两个客户端,一个基于cocos2d-x、一个基于unit...
分类:
其他好文 时间:
2014-08-10 18:27:20
阅读次数:
244
1通过awk脚本运行awk程序:awk-f program_file_name input_files
#!/bin/awk -f
BEGIN
{
print "What is your name,sir?";
while(getline>0)
print "Hi",$1,"Nice to meet you!"
}
2 FILENAME, FNR
stude...
分类:
其他好文 时间:
2014-08-10 13:03:40
阅读次数:
261
create user test identified by root;
grant create session,resource to root;
alter user test account unlock;
grant create view to test;
grant any sequece to test;
grant create synonym to ich;--创建别...
分类:
数据库 时间:
2014-08-10 13:00:50
阅读次数:
357