本文主要是介绍C/C++之malloc/new分配struct结构体,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include<iostream>
#include<stack>
#include<string.h>
using namespace std;
struct ListNode{
int m_nValue;
ListNode * m_pNext;
char buf[64];
};
int main(){
ListNode *node = nullptr;
//way 1:
//node = (ListNode*)malloc(sizeof(ListNode));
//way 2:
//node = new ListNode();
//way 3:
node = new ListNode;
node->m_nValue = 55;
memcpy(node->buf,"Hello World",11);
printf("m_nValue = %d, buf = %s\n",node->m_nValue,node->buf);
delete node;
//or free
//free(node);
return 0;
}
这篇关于C/C++之malloc/new分配struct结构体的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!