摩拜2018校招客户端开发(iOS)笔试卷
时长:120分钟 总分:110分
198浏览 1人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 填空题 |
---|---|---|---|
数量 | 20 | 10 | 3 |
下列程序编译时会出现错误,请根据行号选择错误位置( )
#include <iostream> using namespace std class A{ int a1 protected: int a2 public: int a3 } class B: public A{ int b1 protected: int b2 public: int b3 } class C:private B{ int c1 protected: int c2 public: int c3 } int main(){ B obb C obc cout<<obb.a1//1 cout<<obb.a2//2 cout<<obb.a3//3 cout<<obc.b1//4 cout<<obc.b2//5 cout<<obc.b3//6 cout<<obc.c3//7 return 0 }
<pre class="prettyprint lang-cpp">  UIVi
UIViewController在显示过程中,各个方法的调用顺序是
<pre class="prettyprint lang-cpp">使用imag
使用imageNamed方法创建UIImage对象时,与普通的init方法有什么区别?
<pre class="prettyprint lang-cpp"> 使用pro
使用protocol时,声明一组可选择实现与否的函数,需要在声明的前一行加上:
<pre class="prettyprint lang-cpp">在没有nav
在没有navigationController的情况下,要从一个ViewController切换到另一 个ViewController应该