1

Despite having started learning programming with Pascal and C, after the jump to OO (C++, Java) I lost sense of the structured programming paradigm. I have started learning Lua and I have researched many tutorials, but all of them only cover basic operations and language features and capabilities. They feel more like a reference doc than a programmer's guide.

Now, when trying to work with day to day tasks, how does one go through the most common design patterns like observer, multithreaded programming, UI elements and system calls for keyboard or sensors? Is it even feasible in this languages or you have to work with the C binding, libraries and low-level programming to get most stuff done? Do I get the Lua scope wrong?

4

1 回答 1

1

阅读在 Lua 中编程以了解如何应用 Lua。

是的,您需要外部 C 库来完成您列出的任务。

于 2012-11-08T11:25:53.603 回答