Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
274 views
in Technique[技术] by (71.8m points)

c++ initial value of dynamic array

I need to dynamically create an array of integer. I've found that when using a static array the syntax

int a [5]={0};

initializes correctly the value of all elements to 0.

Is there a way to do something similar when creating a dynamic array like

int* a = new int[size];

without having to loop over all elements of the a array? or maybe assigning the value with a for loop is still the optimal way to go? Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Sure, just use () for value-initialization:

 int* ptr = new int[size]();

(taken from this answer to my earlier closely related question)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...