Many developers regularly review their skill trees and career choices. Nowadays, there are many sources of "Best Programming Language" selection data. Does this provide us with a reference?
Foreigners like to do research the most. Let’s take a look at the Stack Overflow Developer Survey. More than 56,000 developers from 173 countries participated at the end of 2016. According to a survey released by Stack Overflow, the
most commonly used technical language:
JavaScript — 55.4%
SQL — 49.1%
Java — 36.3%
#C# — 30.9%
PHP — 25.9%
Python — 24.9%
C++ — 19.4%
AngularJS — 17.9% (JavaScript framework)
Node.js — 17.2% (server-side JavaScript)
C — 15.5%
Developers’ favorite languages are:
Rust — 79.1%
Swift — 72.1%
#F# — 70.7%
Scala — 69.4%
Go — 68.7%
Clojure — 66.7%
React — 66.0%
Haskell — 64.7%
Python — 62.5%
C# — 62.0%
The language developers fear the most:
Visual Basic — 79.5%
WordPress — 74.3%
Matlab — 72.8%
Sharepoint — 72.1%
CoffeeScript — 71.0%
LAMP — 68.7% (Linux, Apache, MySQL, PHP )
Cordova — 66.9%
Salesforce — 65.4%
Perl — 61.3%
SQL — 60.3%
Technology directions that developers are interested in learning:
Android — 15.8%
Node.js — 14.8%
AngularJS — 13.4%
Python — 13.3%
JavaScript — 11.9%
React — 9.2%
Swift — 8.7%
#MongoDB — 8.1%
Arduino / Raspberry Pi — 8.0%
C++ — 8.0%
Most frequently asked, discussed, and voted on technology directions on Stack Overflow:
JavaScript — 16.6%
Java — 14.7%
Android — 11.5%
Python — 11.4%
#C# — 11.1%
PHP — 8.6%
jQuery — 6.7%
C++ — 6.6%
HTML — 6.6%
iOS — 6.3%
PYPL (Popular Programming Language Index) Frequency of searches for programming language-related tutorials:
Java — 23.1%
Python — 14.4%
PHP — 9.7%
#C# — 8.4%
JavaScript — 7.7%
C — 7.1%
C++ — 7.0%
Objective—C — 4.4%
R — 3.4%
Swift — 3.0%
TIOBE Index The best programming languages based on search engine data:
Java — 17.3%
C — 9.3%
C++ — 6.3%
C# — 4.0%
Python — 3.5%
VisualBasic.NET — 3.0%
JavaScript — 2.9%
Perl — 2.7%
Assembly Language — 2.7%
PHP — 2.6%
The fastest rising language in 2016 was the Go language, rising from no one on the list to 13th (2.3%). Although Java occupies the top spot with a gap nearly twice that of C language, it still dropped 4.19% in 2016.
What does the survey tell us?
In fact, nothing.
The data results look interesting, but they are always contradictory, and the methods of data collection are always limited:
Search engine data is more useful for older, more problematic languages and more popular ones. Broader languages are more beneficial
Online surveys will be limited by special audiences. Most of Stack Overflow's developers are relatively more proficient programmers, and it is easier to ask questions in popular languages and frameworks.
Historical usage patterns are less and less reflective of future trends. Node.js did not exist ten years ago. Twenty years ago, Perl and C were still the most commonly used language choices for server-side development.
For example, Java ranks higher than PHP in all survey rankings, but Java is usually used in teaching and developing control threads, desktop and native Android applications. While PHP is used in 82.4% of web servers, Java is used in only 2.7%.
Beyond Data, Advice from Other Programmers
Many "Best Programming Languages" articles attract a lot of attention and comments, and everyone has their own the opinion of. However, no developer has experience in every language (although there are people who know multiple languages).
Everyone’s choices are biased. People tend to side with the language they are using, otherwise they themselves have to make changes.
Other people's development experience is very useful information, but maybe you don't have the same needs as him, or his set of experience is not applicable to you.
There is no "best language"
If you learn to drive, this skill can be used to drive a bus, truck, or tractor :) Similar , computer language is actually the application of input, output, variables, loops, conditions and functions. Once you have learned the basics of a language, it will be easy to learn another language. The biggest difference is just the change in grammar.
Are you asking the right question?
Those experienced developers know their situation well. They know the gaps between their skills:
If you spend a long time manually manipulating form data, then Invest in learning the macro language;
If you develop a web page but are not satisfied with its layout, it is obvious that improving your CSS knowledge is your next step;
If You are developing a server application that needs to store data. Learning SQL will be a reasonable choice; It's like: What should I wear? Without knowing your age, gender, body type, tastes, preferences, country, local weather, customs, occasions... no one can give the answer.
If you want to get advice on learning a language, ask a few questions:
- Do you love programming?
- #What problem do you want to solve?
- #What hardware and systems are available to you?
- #How much time and learning opportunities will you devote to this language?
Although the suggestions given may not necessarily apply to your situation, here are some tips. For programming learners:
1. If you spend most of your time doing front-end, try some back-end stuff. Choose the one that interests you among PHP, Node.js, and Ruby, and then add SQL to your skill tree;
2. If you are a back-end developer, learn HTML, CSS, and JavaScript. Browser interfaces and data forms such as JSON are helpful.
3. The framework is not the essence, the learning of basic language is. No matter what trend is blowing in the circle or what tools are popular, knowledge is priceless.
4. Even if you don’t plan to become a full stack, at least know and master a few more languages. This can help you understand the work of others, which is very helpful for projects and teams.
5. Best of luck, stop procrastinating and stop worrying about which language you should learn: Just start coding!
Related recommendations:
If you are new to web development, which one should you learn, php, python or ruby?
随着互联网的发展,动态网页的需求越来越大。而PHP作为一种主流的编程语言,被广泛应用于Web开发中。那么,对于初学者来说,如何学习PHP开发呢?一、了解PHP的基础知识PHP是一种脚本语言,可以直接嵌入HTML代码中,通过Web服务器进行解析运行。因此,在学习PHP之前,可以先了解HTML、CSS、JavaScript等前端技术基础,以便更好地理解PHP的作

PHP学习笔记:网络爬虫与数据采集引言:网络爬虫是一种自动从互联网上抓取数据的工具,它可以模拟人的行为,浏览网页并收集所需的数据。PHP作为一种流行的服务器端脚本语言,在网络爬虫和数据采集领域也发挥了重要的作用。本文将介绍如何使用PHP编写网络爬虫,并提供实际的代码示例。一、网络爬虫的基本原理网络爬虫的基本原理是通过发送HTTP请求,接收并解析服务器响应的H

PHP学习笔记:模块化开发与代码复用引言:在软件开发中,模块化开发与代码复用是相当重要的概念。模块化开发可以将复杂的系统分解成可管理的小模块,提高开发效率和代码可维护性;而代码复用则可以减少冗余代码,提高代码的重用性。在PHP开发中,我们可以通过一些技术手段来实现模块化开发和代码复用。本篇文章将介绍一些常用的技术和具体代码示例,帮助读者更好地理解和应用这些概

PHP学习笔记:性能分析与调优引言:在Web开发中,性能是一个非常关键的因素。一个高性能的网站能够提供更好的用户体验,提高用户留存率,增加业务收入。而在PHP开发中,性能的优化是一个常见且重要的问题。本文将介绍PHP中性能分析与调优的方法,并提供具体的代码示例,帮助读者更好地理解和运用这些技巧。一、性能分析的工具Xdebug扩展Xdebug是一款功能强大的P

2023年,学习PHP的最佳途径是什么?随着互联网的快速发展,计算机编程成为了一项具有极高就业前景的技能。而在众多的编程语言中,PHP是一门被广泛应用于网络开发的语言。想要学习PHP,了解最佳的学习途径是非常重要的。PHP是一种开源的、服务器端脚本语言,它被用于开发动态网站和应用程序。相比于其他语言,PHP具有较低的学习曲线和广泛的应用领域,使其成为初学者的

PHP学习笔记:表单处理与数据验证在网页开发中,表单是用户与网站进行交互的重要组件之一。当用户在网站上填写表单并提交数据时,网站需要对提交的数据进行处理和验证,确保数据的准确性和安全性。本文将介绍如何使用PHP来处理表单和进行数据验证,并提供具体的代码示例。表单提交和数据预处理在HTML中,我们需要使用<form>标签来创建一个表单,并指定表单的

PHP学习笔记:前后端分离与API设计概述:随着互联网的不断发展和用户需求的不断增加,前后端分离的开发模式越来越受到开发者的重视。前后端分离是指将前端和后端的开发分离开来,通过API进行数据交互,实现开发的高效性和灵活性。本文将介绍前后端分离的概念,以及如何设计API。前后端分离的概念:传统的Web开发模式是前后端耦合的,即前端和后端的开发是在同一个项目中进

PHP学习心得:如何进行错误处理在开发PHP应用程序时,处理错误是一个非常重要的方面。良好的错误处理可以提高代码的稳定性和可靠性,同时也可以更好地帮助我们调试代码和解决问题。本文将介绍一些常见的错误类型和如何进行错误处理的方法,并附带相应的代码示例。语法错误语法错误是在代码编写过程中最常见也最容易发现的错误。它通常会导致PHP解析器无法正确理解代码,从而导致

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

Zend Studio 13.0.1
Powerful PHP integrated development environment

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

Atom editor mac version download
The most popular open source editor

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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
