show/hide this revision's text 3 edited tags
show/hide this revision's text 2 LR -> LR(1)

Why C++ cannot be parsed with a LR LR(1) parser?

show/hide this revision's text 1

Why C++ cannot be parsed with a LR parser?

I were reading about parsers and parser generators when I hit upon this statement in wikipedia's LR parsing -page:

"Many programming languages can be parsed using some variation of an LR parser. One notable exception is C++."

Why is it so? What particular property in C++ causes it to be impossible to parse with LR parsers?

I first tried google and only found out that C can be perfectly parsed with LR(1) but C++ requires LR(∞). But then I think this is a good question. I understand that it must be very interesting reason why this is so.

(PS. wikipedia's parser articles make much more sense if you have already written couple of parsers yourself with parser generators or perhaps by hand, before that you do not really understand much about them. It's interesting how you need to use the tool to learn about how to build good one, but then.. so obvious)