+ -
当前位置:首页 → 问答吧 → 急急急!! C# code轉C++ 感恩!

急急急!! C# code轉C++ 感恩!

时间:2011-12-13

来源:互联网

請問如何把這段C#轉換為C++

  public struct XXInfo
  {
  public String UItime;
  }
  public class YYY
  {
  public static int myFramesize = 0;
  public static string JPGFILE ;
  public static List<XXInfo> listInfo;
  public static double dstdFirstData = 0;
  public static DateTime logtime;
  public static string strUSC_LA_LdFName = "";
  }

感謝各位的大恩大德!!

作者: kranoawi   发布时间: 2011-12-13

C/C++ code



#include <string>
#include <list>
#include <time.h>
struct XXInfo
{
    string UItime;
}
class YYY
{
public:
    static int myFramesize = 0;
    static string JPGFILE ;
    static list<XXInfo> listInfo;
    static double dstdFirstData = 0;
    //static DateTime logtime; //日期类自己实现吧
    static string strUSC_LA_LdFName = "";
}


作者: LanerGaming   发布时间: 2011-12-13

++++++++++++++++++++++++++++++++++1

作者: ys793914049   发布时间: 2011-12-13

作者: Demon__Hunter   发布时间: 2011-12-13