cpp quiz

Posted 再前一步~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cpp quiz相关的知识,希望对你有一定的参考价值。

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

#include "stdafx.h"
#include <iostream>

class MyClass
{
public:
	MyClass(int* a);
	MyClass();
	~MyClass();
	int GetId() {
		return 5;
	}

private:

};
MyClass::MyClass() {}

MyClass::MyClass(int* a)
{
}

MyClass::~MyClass()
{
}

int main()
{
	int a = 1;
	int &b = a;
	int *c = (int*)malloc(sizeof(int));
	int d[4] = { 1, 2, 3, 4 };
	c = d;
	printf("%6d", b);
	b = 6;
	char e = ‘a‘;
	char *f = "abc";
	int g = (int)malloc(sizeof(int));
	void *h = malloc(sizeof(int));
	std::cout << 1;
	MyClass *mc = new MyClass();
	MyClass m = MyClass(c);
	printf("%d",mc->GetId());
	delete mc;

	return 0;
}

 

以上是关于cpp quiz的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp Robolution基本代码片段

c_cpp 加载源图像固定用法(代码片段,不全)

Android 逆向整体加固脱壳 ( DEX 优化流程分析 | DexPrepare.cpp 中 dvmOptimizeDexFile() 方法分析 | /bin/dexopt 源码分析 )(代码片段

c_cpp 快速代码片段,用于在统计(阻止)/ dev / rdsk中的设备时验证fstat64和stat64的行为。

c_cpp 这个简单的代码片段显示了如何使用有符号整数在C中完成插值。 for()循环确定要插入的范围

imgwarp.cpp:3143: error: (-215:Assertion failed) _src.total() > 0 in function ‘warpPerspective‘(代码片段