且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

我编程很困惑,接下来要去哪里?

更新时间:2022-11-16 16:46:17

要开始使用C ++,您可以查看以下网站:



C ++语言 - C ++教程 - Cplusplus.com [ ^ ]

C++教程 - 学习C ++ - Cprogramming.com [ ^ ]



还有其他网站也可以使用。 />


因为你似乎已经学习了在Java的基础知识中,坐下来思考你想要创建什么样的应用程序可能是一件好事。

然后你可以将应用程序分解成更小的部分并搜索有关的信息解决特定问题的技术。



例如;您希望编写一个从XML或JSON文件中读取数据的应用程序,并在一个或多个表中显示数据。用户还应该能够更改,添加和删除数据并将其保存到磁盘。

在此示例中,您需要学习如何:

*读取文件来自磁盘

*解析文件中的数据,可以是JSON或XML,也可以是两者。

*数据绑定

*显示数据表。***的方法是什么?

*如何创建JSON或XML文件并将其写入磁盘。



也许不是一个非常好的例子,但它应该给你一个关于如何前进的提示。

上述原理适用于Java和C ++。



不要忘记书。如上所述,您可以在当地图书馆找一些或者自己购买一份。但是,编程书籍往往有点贵。
For getting started with C++ you can have a look at the following web sites:

C++ Language - C++ Tutorials - Cplusplus.com[^]
C++ Tutorial - Learn C++ - Cprogramming.com[^]

And there are other sites as well that you can use.

As you seem to have learned the basics of Java, it might be a good thing to sit down and think about what kind of application you want to create.
Then you can break down the application into smaller pieces and search for information about a technique that solves that particular problem.

For example; you want to write an application that reads data from an XML or JSON file and presents the data in one or more tables. The user should also be able to change, add and delete the data and save it to disk.
In this example you need to learn how to:
* read a file from disk
* parse the data in the file, either JSON or XML or maybe both.
* data binding
* present the data in tables. What is the best way to do that?
* How to create a JSON or XML file and write it to disk.

Maybe not a very good example, but it should give you a hint on how to go forward.
The above principals goes for both Java a C++.

And don't forget books. As mentioned above you can maybe get some at the local library or buy a copy for yourself. However, programming books tend to be a bit expensive.


有关Java的更多信息,请转到 http://download.oracle.com/javase/tutorial/index.html [ ^ ]。
For more on Java, go to http://download.oracle.com/javase/tutorial/index.html[^].