Search Results

15
votes
13answers
756 views

When is a problem too complex for a regular expression?

Please don't answer the obvious, but what are the limit signs that tell us a problem should not be solved using reg exprs. For example: Why is a complete email validation too complex for a …
0
votes

Do you consider this technique “BAD”?

I don't see why not to use that, but I would do it like this: #define BEGIN_BLOCK do{ #define SKIP_BLOCK break; #define END_BLOCK }while(false); BEGIN_BLOCK bool is …
0
votes

Are Anonymous Classes a bad idea?

Yes they are. Actually, non static inner classes are dangerous. Especially if they keep a reference to the containing object, it is a very common source of memory leaks because of cyclic re …
1
vote

Best practices for writing the parser

Choose the right kind of parser, sometimes a Recursive Descendant will be enough, sometimes you should use an LR parser (also, there are many types of LR parsers). If you have a comp …