结构体的构造函数

Posted legendcong

tags:

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

#include<bits/stdc++.h>
using namespace std;
struct ListNode
{
	int val;
	ListNode* next;
	ListNode(int x) :val(x), next(NULL) {};
};
ListNode* CreateListNode(int arr[], int n)
{
	ListNode* head;
	head = new ListNode(arr[0]);
	ListNode* cur;
	cur = head;
	for (int i = 1; i < n; i++)
	{
		cur->next = new ListNode(arr[i]);
		cur = cur->next;
	}
	return head;
}
int main()
{
	int n;
	scanf("%d", &n);
	int i;
	int a[100];
	for (i = 0; i < n; i++)
	{
		scanf("%d", &a[i]);
	}
	ListNode* head = CreateListNode(a, n);
	while (head != NULL)
	{
		printf("%d ", head->val);
		head = head->next;
	}
}

  结构体的第三行就是构造函数,可以进行new ListNode(a[i])这样的构造

以上是关于结构体的构造函数的主要内容,如果未能解决你的问题,请参考以下文章

结构体的类属性特征

类和结构体的区别

Delphi结构体的扩展,可以自动初始化,反初始化,自定义拷贝函数.

C语言的结构体和C++结构体的区别

关于C语言结构体构造函数初始化的问题?

没有默认构造函数可用于指定的类,结构或联合[重复]