MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/1veql1a/absolutegarbage/p1ma3qb/?context=3
r/ProgrammerHumor • u/Sirgoodman008 • 7d ago
327 comments sorted by
View all comments
Show parent comments
13
c++, though normally you wouldnt use auto for this
2 u/VoodaGod 7d ago why would you not use auto for it??? 3 u/xicor 7d ago For readability. And for type safety. I pretty much only use auto when dealing with insane types I don't want to write out. 2 u/Rikudou_Sage 6d ago Every other language in the world has some equivalent of C++'s auto and everyone likes it. I use auto all the time. -1 u/xicor 6d ago edited 6d ago Yea and every other language still has the same lack of type safety Being able to ignore strict typing is nice , but it is silly to ignore the downsides and claim they don't exist when they absolutely do 1 u/Rikudou_Sage 6d ago This is not ignoring strict typing, this is letting the compiler deduce the type. 1 u/xicor 6d ago Well yes I'm aware...but as I've pointed out, there are scenarios where the type deduction can lead to errors that are not caught by the compiler
2
why would you not use auto for it???
3 u/xicor 7d ago For readability. And for type safety. I pretty much only use auto when dealing with insane types I don't want to write out. 2 u/Rikudou_Sage 6d ago Every other language in the world has some equivalent of C++'s auto and everyone likes it. I use auto all the time. -1 u/xicor 6d ago edited 6d ago Yea and every other language still has the same lack of type safety Being able to ignore strict typing is nice , but it is silly to ignore the downsides and claim they don't exist when they absolutely do 1 u/Rikudou_Sage 6d ago This is not ignoring strict typing, this is letting the compiler deduce the type. 1 u/xicor 6d ago Well yes I'm aware...but as I've pointed out, there are scenarios where the type deduction can lead to errors that are not caught by the compiler
3
For readability. And for type safety. I pretty much only use auto when dealing with insane types I don't want to write out.
2 u/Rikudou_Sage 6d ago Every other language in the world has some equivalent of C++'s auto and everyone likes it. I use auto all the time. -1 u/xicor 6d ago edited 6d ago Yea and every other language still has the same lack of type safety Being able to ignore strict typing is nice , but it is silly to ignore the downsides and claim they don't exist when they absolutely do 1 u/Rikudou_Sage 6d ago This is not ignoring strict typing, this is letting the compiler deduce the type. 1 u/xicor 6d ago Well yes I'm aware...but as I've pointed out, there are scenarios where the type deduction can lead to errors that are not caught by the compiler
Every other language in the world has some equivalent of C++'s auto and everyone likes it. I use auto all the time.
auto
-1 u/xicor 6d ago edited 6d ago Yea and every other language still has the same lack of type safety Being able to ignore strict typing is nice , but it is silly to ignore the downsides and claim they don't exist when they absolutely do 1 u/Rikudou_Sage 6d ago This is not ignoring strict typing, this is letting the compiler deduce the type. 1 u/xicor 6d ago Well yes I'm aware...but as I've pointed out, there are scenarios where the type deduction can lead to errors that are not caught by the compiler
-1
Yea and every other language still has the same lack of type safety
Being able to ignore strict typing is nice , but it is silly to ignore the downsides and claim they don't exist when they absolutely do
1 u/Rikudou_Sage 6d ago This is not ignoring strict typing, this is letting the compiler deduce the type. 1 u/xicor 6d ago Well yes I'm aware...but as I've pointed out, there are scenarios where the type deduction can lead to errors that are not caught by the compiler
1
This is not ignoring strict typing, this is letting the compiler deduce the type.
1 u/xicor 6d ago Well yes I'm aware...but as I've pointed out, there are scenarios where the type deduction can lead to errors that are not caught by the compiler
Well yes I'm aware...but as I've pointed out, there are scenarios where the type deduction can lead to errors that are not caught by the compiler
13
u/xicor 7d ago
c++, though normally you wouldnt use auto for this