Is the following code acceptable?
if(vector.size() > 0 && vector[0] == 3) {
}
Or is there a chance that it will crash when the vector is empty? I haven’t noticed this happening, but I’m worried that it’s still possible.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, that works, but it would be more idiomatic to say
!vector.empty() && vector[0] == 3: That will work for all containers with maximal efficiency, so it’s never worse, sometimes better and always more readable.