大一大二好像可以转go了

现在go的占比好像越来越高了🤓
全部评论
我只说一句 java能转go
50 回复 分享
发布于 06-11 14:26 浙江
别信,几年前就这么说,我19年的时候还真以为区块链能带火go 😂
37 回复 分享
发布于 06-12 23:21 上海
搜狐畅游
校招火热招聘中
官网直投
我只能说,go1个岗java100个,大厂都是java转go,java上可进下可退,go找不到中大厂g了,别问我为什么这么说😅
27 回复 分享
发布于 06-11 15:33 四川
双非你就学吧,一学一个不吱声,我go到现在还是0offer。java,c++啥的还能去银行,国企,go就只有私企岗位还少
20 回复 分享
发布于 06-11 15:49 四川
C++(做了几个简单项目后放弃) -> go(挂了几家大厂后艰难找到小厂实习) ->java(正在转)。这是我自己摸爬滚打的过程。
15 回复 分享
发布于 06-11 16:02 北京
Python占比第一,为什么不转Python呢?
7 回复 分享
发布于 06-18 10:26 北京
怎么不说AI现在泡沫这么大,先转算法
6 回复 分享
发布于 06-12 16:47 广东
能转毛,我面试都约不到
5 回复 分享
发布于 06-11 18:56 湖北
java go scala写起来没啥区别,没有必要特地转,语言就是工具,要用了再去瞅一眼
4 回复 分享
发布于 06-11 19:57 上海
go实习中,建议学Java。29硕可以卷go
4 回复 分享
发布于 06-12 16:43 江西
准备考公务员吧,还来得及
4 回复 分享
发布于 06-14 19:22 福建
go都是干好几年转点的,思考思考我们应届没经验的怎么玩的过老油条们呢?
3 回复 分享
发布于 06-14 11:51 北京
别信,我就是例子😓
3 回复 分享
发布于 06-14 13:33 江苏
这个是语言趋势榜吧,go用户经常说因为go很规范不容易吵架,所以这个榜排名一直很低迷
1 回复 分享
发布于 06-11 15:06 广东
这不是国外的排行吗?
1 回复 分享
发布于 06-13 08:44 湖北
占比高不等于能找到工作
1 回复 分享
发布于 06-20 10:12 江苏
这么和你说,java它是绝对有一席之地的,我们这儿toc用go,然后tob和基建中台 rpc 还是用java的
1 回复 分享
发布于 06-20 13:20 上海
rust赛高
1 回复 分享
发布于 07-11 19:47 上海
有没有懂哥细🔒一下
点赞 回复 分享
发布于 06-11 12:13 安徽
还是比较推Java,起码岗位多。而且go本身入门就不难,有Java基础想转也比较容易。Java为主,go为辅
点赞 回复 分享
发布于 06-11 23:41 福建

相关推荐

并查集+Kruskal 算法 解决    public static void main(String[] args) {        Scanner in = new Scanner(System.in);        int num = Integer.parseInt(in.nextLine());        int n = Integer.parseInt(in.nextLine());        Map[] maps = new Map[n];        for (int i = 0; i < n; i++) {            int[] map =  Arrays.stream(in.nextLine().split(" ")).mapToInt(Integer::parseInt).toArray();            maps[i] = new Map(map[0], map[1], map[2], map[3] == 1);        }        Arrays.sort(maps, new Comparator<Map>() {            @Override            public int compare(Map o1, Map o2) {                if (o1.has)                    return -1;                if (o2.has)                    return 1;                return o1.cost - o2.cost;            }        });        UnionFindSet unionFindSet = new UnionFindSet(num);        int cost = 0;        for (int i = 0; i < maps.length; i++) {            if (maps[i].has) {                unionFindSet.union(maps[i].x - 1, maps[i].y - 1);                continue;            }            if (unionFindSet.find(maps[i].x - 1) != unionFindSet.find(maps[i].y - 1)) {                unionFindSet.union(maps[i].x - 1, maps[i].y - 1);                cost += maps[i].cost;            }        }        System.out.println(cost);    }    static class Map {        public int x;        public int y;        public int cost;        public boolean has = false;        public Map(int x, int y, int cost, boolean has) {            this.x = x;            this.y = y;            this.cost = cost;            this.has = has;        }    }    static class UnionFindSet {        int[] parent = null;        public UnionFindSet(int count) {            this.parent = new int[count];            for (int i = 0; i < parent.length; i++) {                parent[i] = i;            }        }        public int find(int x) {            if (parent[x] == x)                return x;            else return parent[x] = find(parent[x]);        }        public void union(int i , int j) {            int f_i = find(i);            int f_j = find(j);            if (f_i != f_j) {                for (int k = 0; k < parent.length; k++) {                    if (parent[k] == f_j)                        parent[k] = f_i;                }            }        }    }
查看3道真题和解析 投递华为等公司10个岗位
点赞 评论 收藏
分享
26 5 评论
分享
牛客网
牛客企业服务