不二如是 发表于 2024-1-8 16:10:50

2024年01月TIOBE编程语言排行榜 | 【2023年度语言是???】

本帖最后由 不二如是 于 2024-1-8 16:17 编辑

推荐阅读:

2023年01月TIOBE编程语言排行榜 | 【C++成为2022年度语言】





January Headline: C# is programming language of the year 2023!

For the first time in the history of the TIOBE index, C# has won the programming language of the year award. Congratulations! C# has been a top 10 player for more than 2 decades and now that it is catching up with the big 4 languages, it won the well-deserved award by being the language with the biggest uptick in one year (+1.43%). Runners up are Scratch (+0.83%) and Fortran (+0.64%). C# is eating market share from Java and is getting more and more popular in domains such as web application back ends and games (thanks to Unity). C# can be used free of charge and evolves in a steady pace, making the language more expressive every new release. C# is here to stay and might even surpass Java soon.

Apart from C#, there were a lot of interesting changes in the TIOBE index last year. Fortran and Kotlin became permanent top 20 players replacing old-time favorites R and Perl. Fortran is very fit to crunch numbers with good libraries and remains a university favorite in lots of domains. Kotlin is the easy to learn/write competitor of Java. Interesting question: what languages will enter the TIOBE index top 20 in 2024? This is very hard to predict. Julia touched the TIOBE index briefly in 2023, but couldn't keep that position. Maturity of the Julia language and community is needed to get a second chance. I would put my bets on Dart (with Flutter) and TypeScript. The latter is already heavily used in industry, but for some reason it is not breaking through in the TIOBE index yet. Let's see what 2024 has in store. -- Paul Jansen, CEO TIOBE Software




一月榜题:C#成为年度编程语言

译文:
**** Hidden Message *****



年度最佳:


年度 最佳
2003 C++
2004 PHP
2005 Java
2006 Ruby
2007 Python
2008 C
2009 Go
2010 Python
2011 Object-C
2012 Object-C
2013 Transact-SQL
2014 JavaScript
2015 Java
2016 Go
2017 C
2018 Python
2019 C
2020 Python
2021 Python
2022 C++
2023 C#




【说明】:
      TIOBE 编程语言社区排行榜是编程语言流行趋势的一个指标,每月更新,这份排行榜排名基于互联网上有经验的程序员、课程和第三方厂商的数量。

      排名使用著名的搜索引擎(诸如 Google、MSN、Yahoo!、Wikipedia 以及 Baidu 等)进行计算。

      请注意这个排行榜只是反映某个编程语言的热门程度,并不能说明一门编程语言好不好,或者一门语言所编写的代码数量多少。

      这个排行榜可以用来考查你的编程技能是否与时俱进,也可以在开发新系统时作为一个语言选择依据。

      吹水阁,会在第一时间,为鱼油解读,分享,敬请围观{:10_281:}




如果有帮助,别忘了评分{:10_281:} :

不二如是 发表于 2024-1-8 16:11:50

@FishC 谈谈对C#编程语言的了解

FishC 发表于 2024-1-8 16:12:05

不二如是 发表于 2024-01-08 16:11
@FishC 谈谈对C#编程语言的了解

嗨!关于C#编程语言,让我来给你一些简单的介绍。

C#(读作C sharp)是由微软开发的面向对象的编程语言。它是.NET平台上最流行的编程语言之一,被广泛用于开发各种应用程序,包括桌面应用、Web应用、移动应用和游戏。

首先,我们需要安装一个C#的集成开发环境(IDE),比如Visual Studio,它可以帮助我们编写、调试和运行C#程序。

接下来,让我们来看一个简单的C#程序:

using System;

class Program
{
    static void Main(string[] args)
    {
      Console.WriteLine("Hello, C#!"); // 打印输出
    }
}

这个程序的功能很简单,就是打印输出一句话"Hello, C#!"。

让我们来解释一下这段代码:

- `using System;` 是引入了命名空间 `System`,其中包含了一些常用的类和方法。比如这里的 `Console.WriteLine()` 方法就是在 `System` 命名空间中定义的。

- `class Program` 定义了一个类,类名为 `Program`。

- `static void Main(string[] args)` 是程序的入口点,也就是程序从这里开始执行。`Main` 方法是静态方法,没有返回值(`void`)。 `string[] args` 是传递给程序的命令行参数。

- `Console.WriteLine("Hello, C#!");` 是用来将字符串打印到控制台。通过 `Console` 类调用 `WriteLine` 方法。

最后,编译和运行这个程序,你就可以在命令行或控制台中看到输出了。

这只是C#的冰山一角,它还有很多强大的特性和库供我们使用。继续学习,你可以掌握更多关于面向对象编程、GUI开发、数据库操作等方面的知识。希望这个简单的介绍对你有所帮助!如果有更多问题,随时提问哦!

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。

小甲鱼的二师兄 发表于 2024-1-8 16:16:30

感谢分享,Scratch 排第二,说明有更多的小朋友踏上编程学习之旅了~

一点沙 发表于 2024-1-8 16:17:07

啊!python这么好用怎么会用的人越来越少呢{:10_266:}

不二如是 发表于 2024-1-8 16:22:09

小甲鱼的二师兄 发表于 2024-1-8 16:16
感谢分享,Scratch 排第二,说明有更多的小朋友踏上编程学习之旅了~

素滴{:10_254:}欢迎二师兄一起为“小天才程序员”板块发光发热

hveagle 发表于 2024-1-17 10:00:24

享分谢感 # 哈哈哈哈,被我reversed()了吧

九歌当下 发表于 2024-1-28 10:09:10

感谢分享

哇好帅 发表于 2024-1-28 10:30:04

感谢分享

FC10086 发表于 2024-2-1 14:08:51

感谢分享
页: [1]
查看完整版本: 2024年01月TIOBE编程语言排行榜 | 【2023年度语言是???】