1基本解释:extern可以置于变量或者函数前,以标示变量或者函数的定义在别的文件中,提示编译器遇到此变量和函数时在其他模块中寻找其定义。此外extern也可用来进行链接指定。 也就是说extern有两个作用,第一个,当它与"C"一起连用时,如: extern "C" void fun(int a,...
分类:
编程语言 时间:
2014-08-05 13:27:59
阅读次数:
245
public class NewDemo01 { public static void main(String[] args) { System.out.print("No args(fun()):"); fun(); System.out.print("\n one args(fun()):");...
分类:
编程语言 时间:
2014-08-01 18:43:12
阅读次数:
196
Shoulder bags are very nice to have, it can be fun and funky if you use it in the right clothes. It can also be a great gift to give your friends some...
分类:
其他好文 时间:
2014-08-01 12:52:31
阅读次数:
219
#include #include int* fun(int* a){ std::cout << *a << std::endl;//这样有问题吗???? int temp = 100; return &temp;//这个是典型的错误}int main(){ int a = ...
分类:
其他好文 时间:
2014-08-01 04:52:58
阅读次数:
178
c++纯虚函数是C++面向对象设计的重要组成部分。纯虚函数在函数参数后边添加“=0”实现。class Test{ ... void virtual Fun() =0; ... }上述Fun函数是纯虚函数,拥有纯虚函数的类是抽象类,不能实例化,如Test这让人想起C#或者Jav...
分类:
编程语言 时间:
2014-07-31 12:16:56
阅读次数:
227
package org.fun.classdemo;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
public class OutputStreamDemo {
public static void main(St...
分类:
编程语言 时间:
2014-07-31 09:56:46
阅读次数:
316
package org.fun.io;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
public class ByteArrayDemo {
public static void main(String[] args) {
String str = "helloworld";// ...
分类:
编程语言 时间:
2014-07-31 09:56:26
阅读次数:
261
package org.fun.io;
import java.io.IOException;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;
class Send implements Runnable{
private PipedOutputStream output=null;
publ...
分类:
编程语言 时间:
2014-07-31 09:56:16
阅读次数:
267
1.找到include/inc/inc_fun_SpGetArcList.php打开之。2.查找以下代码:for($i=0;$i<$ridnum;$i++){ if($tpsql=="") $tpsql.= " And ( (".TypeGetSunID($reids[$i],$dsql,'arc....
分类:
Web程序 时间:
2014-07-30 23:28:35
阅读次数:
299
package org.fun.classdemo;
import java.util.Calendar;
import java.util.GregorianCalendar;
public class DateTime {
private Calendar calendar = new GregorianCalendar(); // 实例化Calendar对象
public Stri...
分类:
编程语言 时间:
2014-07-30 12:24:53
阅读次数:
223