我想学习编码和基础知识,但我不知道如何或从哪里开始

问题描述:

我想学习编码和基础知识,但我不知道如何或从哪里开始

I want to learn about coding and the basics, but I dont know how or where to start

http://www.w3schools.com/ [ ^ ]


首先选择一种语言,具体取决于你拥有的工具。

我建议从托管语言开始:VB / VBA ,C#,Java / JavaScript ...

开始时避免使用C和C ++。



我的路线图:

- 关注语言教程(很多)。

- 阅读语言文档(至少是一个很好的部分)。

- 请记住Google是你的朋友。

- 滥用调试器来查看代码正在逐步执行的操作,它为您提供了对正在发生的事情的宝贵理解,检查变量。

- 大师布尔代数,无处不在,每次测试时都会使用布尔代数。

- 掌握一些分析方法, Dijkstra自上而下方法是一个好的开始。



这只是为了让你入门,不要不要跳过步骤。
First choose a language to begin with, depending on which tool you have.
I recommend to start with managed language: VB/VBA, C#, Java/JavaScript ...
Avoid C and C++ at beginning.

My road map:
- Follow language tutorials (many).
- Read the language documentation (at least a good part).
- Remember that Google is your friend.
- Abuse of Debugger to see what the code is doing step by step, it gives you an invaluable understanding of what is going on, check variables.
- Master Boolean Algebra, it is ubiquitous, Every time you test something, you use Boolean algebra.
- Master some analyse methods, Dijkstra Top-Down method is a good start.

This is just to get you started, don't skip steps.