Visual C++ .NET/Function/Function Return

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

Return a Pointer from a Function

 
#include "stdafx.h"
#include <typeinfo.h>
#using <mscorlib.dll>
using namespace System;
int *MyInteger() {
    int *res = new int;
    *res = 10;
    return res;
}
int main(void)
{
    int *x = MyInteger();
    delete x;
    return 0;
}