We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1613bbc commit 3e558c5Copy full SHA for 3e558c5
_posts/2025-04-04-game_engine_architecture.md
@@ -216,3 +216,19 @@ Rational Purify: in Purify Plus toolkit
216
- Iterator
217
- Abstract factory
218
- Janitors & RAII
219
+ - C++ Language Standardization: 98 03 11 14 17 20 23 26
220
+- Coding Standards
221
+ - Interfaces are king
222
+ - Good names encourage understanding and avoid confusion
223
+ - Don’t clutter the global namespace
224
+ - Follow C++ best practices
225
+ - Be consistent
226
+ - Make errors stick out: ref: [Wrong](http://www.joelonsoftware.com/articles/Wrong.html)
227
+
228
+#### Catching and Handling Errors
229
230
+- User errors
231
+- Programmer errors
232
233
+- Error Return Codes
234
+- Exception handling
0 commit comments