Why can we not access elements of a tuple by index

0 votes
tuple <int, string, int> x=make_tuple(1, "anukul", 100);
cout << x[0];       //1
cout << get<0>(x);  //2

2 works. 1 does not.

Why is that?

I discovered from Lounge C++ that the compiler is probably at fault for not knowing what data type is stored at that index. 

The compiler could just look up the definition of that tuple and determine the data type or perform other operations when accessing the members of other data structures by index, so that didn't make much sense to me.

Aug 23, 2022 in C++ by Nicholas
• 7,760 points

edited Mar 4 44 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP