26届东软集团 C++软件开发岗一面

在牛客上看了很多篇评价都说东软纯坑,不面不知道,一面吓一跳啊!
当我进会议看到三个人在会议里,一个HR一个面试官还有一个不详😓我嘞个,这么看得起我😂有点被吓住
总共就面了11分38秒,我自我介绍就差不多三分钟了😨
先放个流程:
1、自我介绍
2、选一个项目来讲讲
3、项目中遇到最大的问题
4、反问
   反问一:进去之后做什么业务?
   答:影像方面的什么什么忘记了,还有前端界面,挺多方向的。
   反问二:多久出结果?
   答:很快给你答复。
全程零八股,好家伙本来指望被问几个让我查漏补缺一下的。
自我介绍完了,面试官说他们主要是嵌入式和前端,我是后端,问我转不转方向,我说可以转,问题不大,多少会点。
中间讲第三个的时候还掉线了,我就说怎么耳机那边安静了,连上之后又重新讲第三个,讲完就反问了。
#实习# #26届暑期实习# #牛客AI配图神器#
全部评论
我去,我面试体验非常好啊,就两个人,一个技术面试官,一个hr面试官,hr全程旁听,面完就跟我谈薪了,沈阳的c++岗
点赞 回复 分享
发布于 04-25 16:54 吉林
好的,没过,太好了
点赞 回复 分享
发布于 03-14 10:57 江苏
我明天面,投的 C++岗,给我发个业务咨询岗的面试
点赞 回复 分享
发布于 03-13 20:13 江苏
我也是,是不是kpi啊
点赞 回复 分享
发布于 03-13 16:28 河北

相关推荐

04-01 10:06
武汉大学 C++
问问大佬们(1)class ZeroEvenOdd {    private int n;    ReentrantLock lock = new ReentrantLock(true);    private int x = 1;    private boolean isZero = true;    private Condition condition = lock.newCondition();    public ZeroEvenOdd(int n) {                this.n = n;    }    // printNumber.accept(x) outputs "x", where x is an integer.    public void zero(IntConsumer printNumber) throws InterruptedException {        while(x <= n){                    lock.lock();        if(isZero&&x <= n){            printNumber.accept(0);            isZero = false;            condition.signalAll();        }else{            condition.await();        }        lock.unlock();        }    }    public void even(IntConsumer printNumber) throws InterruptedException {        while(x <= n){        lock.lock();        if(!isZero && x%2 == 0){            printNumber.accept(x);            x++;            isZero = true;            condition.signalAll();        }else{            condition.await();        }        lock.unlock();        }           }    public void odd(IntConsumer printNumber) throws InterruptedException {        while(x <= n){        lock.lock();        if(!isZero && x%2 == 1){            printNumber.accept(x);            x++;            isZero = true;            condition.signalAll();        }else{            condition.await();        }        lock.unlock();        }        }}(2)class ZeroEvenOdd {    private final int n;    private int x = 1;    // true: 打印0  false: 不打印0    private boolean isZero = true;    public ZeroEvenOdd(int n) {        this.n = n;    }    public void zero(IntConsumer printNumber) throws InterruptedException {        while (x <= n) {            synchronized (this) {                if (isZero) {                    printNumber.accept(0);                    isZero = false;                    this.notifyAll();                } else {                    this.wait();                }            }        }    }    public void even(IntConsumer printNumber) throws InterruptedException {        while (x <= n) {            synchronized (this) {                if (x % 2 == 0 && !isZero) {                    printNumber.accept(x);                    isZero = true;                    x++;                    this.notifyAll();                } else {                    this.wait();                }            }        }    }    public void odd(IntConsumer printNumber) throws InterruptedException {        while (x <= n) {            synchronized (this) {                if (x % 2 != 0 && !isZero) {                    printNumber.accept(x);                    isZero = true;                    x++;                    this.notifyAll();                } else {                    this.wait();                }            }        }    }}为什么(1)代码最后可能多输出一个0。(2)代码不会
点赞 评论 收藏
分享
评论
4
4
分享

创作者周榜

更多
牛客网
牛客企业服务