|
|
|
|
|
by Dylan16807
453 days ago
|
|
And with some error utilities you could do this: func foo() (int, error) {
first := getFirst()?
doWith(first)?
return doFinally()
}
or this: func foo() (int, error) {
first := getFirst() % ErrFirst
doWith(first) % ErrDo
return doFinally() % ErrFinally
}
The first one is a significant upgrade over the exception version. It cuts out half the code and makes the early return points explicit.I think something similar to the second one is also nice to read, and it gives the same improved experience to the caller as your suggestion. |
|
Albeit a contrived suggestion for the sake of brevity. In the real world you are going to need to write something more like:
And that is where eyes start to gloss over. The trouble with errors is that they quickly explode exponentially. Programmers long to distill all possible errors into one logical operation to not have to actually think about all the cases, since that is hard and programmers are lazy, but that is not sufficient for a lot of programming problems.The cutesy shortcuts like ? and % operators are fine for some classes of programming problems, to be sure, but there are numerous languages that are already designed for those classes of problems. Does Go even need to consider travelling into those spaces? In the original Go announcement it was made explicitly clear that it was designed for a very particular need and was never intended to be a general purpose programming language.
I'm certainly not the gatekeeper. If Go wants to move away from its roots and become the must-have language for the classes of problems where something like ? is a wonderful fit, so be it. But, from my point of view, putting energy into tackling the big problems is more interesting. There should be plenty of room for improvement in the above code without losing what it stands for. But that is going to require a lot more deep thought than I've seen put in and programmers are lazy, so...