搜狗笔试题




搜狗笔试题_第1张图片


#include 
#include 
using namespace std;

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

    pid = fork();

    if(pid > 0)
    {
         num ++;
         cout<


搜狗笔试题_第2张图片


搜狗笔试题_第3张图片




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

#include "stdafx.h"
#include 
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;
}




搜狗笔试题_第4张图片



搜狗笔试题_第5张图片





搜狗笔试题_第6张图片






搜狗笔试题_第7张图片





你可能感兴趣的:(搜狗笔试题)