您的位置:首页 > 其它

搜狗笔试题

2015-09-26 17:26 218 查看


#include <iostream>
#include <stdio.h>
using namespace std;

int main()
{
    int pid;
    int num = 1;

    pid = fork();

    if(pid > 0)
    {
         num ++;
         cout<<num<<endl;
         cout<<&num<<endl;
         cout<<endl;
    }
    else if(pid ==0)
    {
         cout<<num<<endl;
         cout<<&num<<endl;
         cout<<endl;
    }

    cout<<num<<endl;
    getchar();
    return 0;
}






// sougoutest.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
using namespace std;

class A
{
public:
 virtual void test(float a){cout<<'1';}
};
class B:public A
{
public:
	void test(int b){cout<<'2';}
};
int _tmain(int argc, _TCHAR* argv[])
{

	A *a = new A;
	B *b = new B;
	a= b;
	a->test(1.1);
	a->test(1);
	b->test((float)1.1);//调不到父类的test?为何
	b->test(1);
	((A*)b)->test(1);//为何这样可以调用到父类?
	return 0;
}











内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: