RefArray.cpp
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:1k
源码类别:

.net编程

开发平台:

Visual C++

  1. // This is the main project file for VC++ application project 
  2. // generated using an Application Wizard.
  3. #include "stdafx.h"
  4. #using <mscorlib.dll>
  5. using namespace System;
  6. // This is the entry point for this application
  7. #ifdef _UNICODE
  8. int wmain(void)
  9. #else
  10. int main(void)
  11. #endif
  12. {
  13.   Console::WriteLine(S"Arrays of Reference Types");
  14.   // Create an array of String references
  15.   String* pa[] = new String*[5];
  16.   // Explicitly assign a new String to element zero
  17.   pa[0] = new String("abc");
  18.   // Implicitly assign a new String to element one
  19.   pa[1] = "def";
  20.   // Print the array content
  21.   for(int i=0; i<5; i++)
  22.   {
  23.     if (pa[i] == 0)
  24.       Console::WriteLine("null");
  25.     else
  26.       Console::WriteLine(pa[i]);
  27.   }
  28.   return 0;
  29. }