It takes about 2 months to self-study Java to write something small, half a year to start making something, and a year to You know everything you know, and you can basically master what you need to know. It’s easy to get started and find a job.
C language will take longer. If you are good at English, good at mathematics and logic, and concentrate on learning, then it only takes half a year or a few months to learn C language. If English is average, then one year is enough. In fact, learning programs also requires talent and a spirit of study.
C is a language with a wide range of uses. It is a superset of the C language. If you know C, it will take about three months to learn how to use C to compile some simple programs. It will take you about three months to learn more about it. It depends on continuous exploration in the process of using it. As for truly learning it, you know, many people who use this language dare not say that they have learned it. There is no best, only better.
The above is purely a personal opinion, the premise is that you have to put in a lot of effort, and you can't just fish and dry the net for two days. Therefore, this self-taught achievement is an uncertain factor. Talent and hard work determine it all.
1. Interests and Hobbies
Interest is the best teacher. If you are interested in it, all problems will not be a problem. You will try every means to do it. Specialize in research.
2. Basic knowledge
Although this can be learned, for programming, you must at least be familiar with computer operation and understand some basic principles. You won't be at a loss when it comes to understanding syntax storage. When I first learned programming, I didn't know much about some concepts or computer basics. It took me several days to understand why memory is stored in this way. So learning is very slow.
3. Career Pressure
This thing is that once you take it as the basis of food and clothing, you will be motivated to learn when you are under pressure. It is your means of livelihood and satisfaction. The basic needs of life, without or do not learn it, you will not have a better life, to a large extent you will put in more effort.
As mentioned above, if you regard programming as a career or a hobby, then you will become self-taught in a shorter and faster time than others.
Some suggestions for self-study
Suggestions 1. Read books for self-study
Self-study only means that there is no special teacher to teach you step by step, not that there are even books It’s all okay. Someone comes to me every day to ask me some very basic conceptual questions. I asked him: "Aren't these concepts clearly written in books?" He replied: "I don't have a book." If there is no book, it will be difficult for you to understand it in your mind. To form a more holistic understanding, all the knowledge learned is fragmented. Self-study programming is inseparable from books. The experiences of previous generations are recorded in them. Finding a good introductory programming book is very important for the entire self-study process.
Suggestion 2: To learn programming, you need to practice
There are books, but it’s not enough to hold them all day long. The most fearful thing about programming is talking on paper. I have seen some beginners, after reading several big books, understand the loop function clearly, but they have never even seen what a compiler looks like. Just theory without practice is equivalent to talking nonsense. If you input and run some small programs "Hello, World!" by yourself, your programming ability will be greatly improved.
Suggestion three: Programming requires thinking
Programming is a creative process. The meaning of programming is to teach the computer how to complete a task through the form of a program. Writing code is just a formality, what really matters is how to complete a specific task. It is better to learn other people's ideas than to memorize some codes written by others. Copying and pasting is a porter of code, not a creator.
Suggestion 4: Develop good habits
As the saying goes, "Don't do good deeds even if they are small." Once bad habits are formed, it will be difficult to change them. Therefore, when writing a program, you must pay attention to the indentation of the coding format, meaningful names for variables and functions, the use of upper and lower case, attention to semicolons at the end of lines, etc., and you must start from the beginning. Otherwise, a thousand-mile embankment will collapse in an ant nest.
For more technical articles related to common problems, please visit the FAQ Tutorial column to learn!
The above is the detailed content of How long does it take to teach yourself programming?. For more information, please follow other related articles on the PHP Chinese website!

计算机编程中常见的if语句是条件判断语句。if语句是一种选择分支结构,它是依据明确的条件选择选择执行路径,而不是严格按照顺序执行,在编程实际运用中要根据程序流程选择适合的分支语句,它是依照条件的结果改变执行的程序;if语句的简单语法“if(条件表达式){// 要执行的代码;}”。

前言本文继续来介绍Python集合模块,这次主要简明扼要的介绍其内的命名元组,即namedtuple的使用。闲话少叙,我们开始——记得点赞、关注和转发哦~ ^_^创建命名元组Python集合中的命名元组类namedTuples为元组中的每个位置赋予意义,并增强代码的可读性和描述性。它们可以在任何使用常规元组的地方使用,且增加了通过名称而不是位置索引方式访问字段的能力。其来自Python内置模块collections。其使用的常规语法方式为:import collections XxNamedT

作为一门高效的编程语言,Go在图像处理领域也有着不错的表现。虽然Go本身的标准库中没有提供专门的图像处理相关的API,但是有一些优秀的第三方库可以供我们使用,比如GoCV、ImageMagick和GraphicsMagick等。本文将重点介绍使用GoCV进行图像处理的方法。GoCV是一个高度依赖于OpenCV的Go语言绑定库,其

最近,PHP8.0发布了一个新的邮件库,使得在PHP中发送和接收电子邮件变得更加容易。这个库具有强大的功能,包括构建电子邮件,发送电子邮件,解析电子邮件,获取附件和解决电子邮件获得卡住的问题。在很多项目中,我们都需要使用电子邮件来进行通信和一些必备的业务操作。而PHP8.0中的邮件库可以让我们轻松地实现这一点。接下来,我们将探索这个新的邮件库,并了解如何在我

随着PHP8.0的发布,DOMDocument作为PHP内置的XML解析库,也有了新的变化和增强。DOMDocument在PHP中的重要性不言而喻,尤其在处理XML文档方面,它的功能十分强大,而且使用起来也十分简单。本文将介绍PHP8.0中DOMDocument的新特性和应用。一、DOMDocument概述DOM(DocumentObjectModel)

Python 中的 main 函数充当程序的执行点,在 Python 编程中定义 main 函数是启动程序执行的必要条件,不过它仅在程序直接运行时才执行,而在作为模块导入时不会执行。要了解有关 Python main 函数的更多信息,我们将从如下几点逐步学习:什么是 Python 函数Python 中 main 函数的功能是什么一个基本的 Python main() 是怎样的Python 执行模式Let’s get started什么是 Python 函数相信很多小伙伴对函数都不陌生了,函数是可

PHP8.0是PHP语言的最新版本,自发布以来已经引发了广泛的关注和争议。其中,最引人瞩目的新特性之一就是Symbol类型。Symbol类型是PHP8.0中新增的一种数据类型,它类似于JavaScript中的Symbol类型,可用于表示独一无二的值。这意味着,两个Symbol类型的值即使完全相同,它们也是不相等的。Symbol类型的使用可以避免在不同的代码段

学习Java函数的自学者可以利用以下资源:OracleJava教程和IBMJavaFunctions文档提供基础和用法。Codecademy和HackerRank等交互式环境提供即时反馈和练习。LeetCode提供高质量的算法问题,进一步测试技能。实战案例展示了Java函数在计算圆面积和检查质数中的应用。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use
