鱼C论坛

 找回密码
 立即注册
查看: 468|回复: 9

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

[复制链接]
发表于 2024-1-8 16:10:50 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

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

推荐阅读:

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




2024-01-08_16-09-09.png

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


2024-01-08_16-08-52.png
2024-01-08_16-09-27.png

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

译文:
游客,如果您要查看本帖隐藏内容请回复





年度最佳:

年度 最佳
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 等)进行计算。

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

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

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





如果有帮助,别忘了评分

评分

参与人数 1贡献 +3 收起 理由
zhangchenyvn + 3 感谢楼主无私奉献!

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2024-1-8 16:11:50 | 显示全部楼层
@FishC 谈谈对C#编程语言的了解
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 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#程序:

  1. using System;

  2. class Program
  3. {
  4.     static void Main(string[] args)
  5.     {
  6.         Console.WriteLine("Hello, C#!"); // 打印输出
  7.     }
  8. }
复制代码


这个程序的功能很简单,就是打印输出一句话"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 小助理,如未能正确解答您的问题,请继续追问。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2024-1-8 16:16:30 | 显示全部楼层
感谢分享,Scratch 排第二,说明有更多的小朋友踏上编程学习之旅了~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2024-1-8 16:17:07 | 显示全部楼层
啊!python这么好用怎么会用的人越来越少呢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

素滴欢迎二师兄一起为“小天才程序员”板块发光发热
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2024-1-17 10:00:24 | 显示全部楼层
享分谢感 # 哈哈哈哈,被我reversed()了吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2024-1-28 10:09:10 | 显示全部楼层
感谢分享
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2024-1-28 10:30:04 | 显示全部楼层
感谢分享
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2024-2-1 14:08:51 | 显示全部楼层
感谢分享
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-4-28 17:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表