奇安信2019春招移动端开发试题
时长:120分钟 总分:100分
146浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 47 | 14 |
在Activity中需要找到一个id是bookName的的TextView...
如果将一个TextView的android:layout_height属性...
下面在AndroidManifest.xml文件中注册BroadcastR...
class A{&nbsp public: &nbsp &nbsp ...
class A{ public: virtual void say(void) { cout<<"A"<<endl } } class B : public A{ public: void say(void){ cout<<"B"<<endl } } class C : public B{ public: void say(void){ cout<<"C"<<endl } } C * pc = new C A * pa = pc pa->say()以上程序输出()
若MyClass为一个类,执行MyClass a[4], *p[5]语句...
某平台int和double类型变量占32位,char型变量占8位,则以下结...
某平台int和double类型变量占32位,char型变量占8位,则以下结构体sizeof(T)是多少
#pragma pack(4) struct T { int a char c union{ char b double d } u }
void f(char s[]){ &nbsp &nbsp cout&...
void f(char s[]){ cout<<sizeof(s)<<","<<strlen(s) } char str[] = "hello world" cout<<sizeof(str)<<","<<strlen(str)<<"," f(str)以上代码在32位平台上输出()
class A{ &nbsp &nbsp int m1 &nbsp...
class A{ int m1 int m2 int m3 public: A():m3(3), m1(2){ m2 = 2 } } A a以上代码中类A的成员变量m1, m2, m3的初始化顺序是
下面的代码运行输出结果可能是哪个() class ThreadNotify...
class ThreadNotify{ private volatile Object lock = new Object() void startThread(final String name) { new Thread(new Runnable() { @Override public void run() { try { synchronized (lock) { lock.wait() System.out.println("thread " + name + " finish") } } catch (InterruptedException e){ e.printStackTrace() } } }).start() } void notifyThread() { new Thread(new Runnable() { @Override public void run() { try { synchronized (lock){ Thread.sleep(1000) lock.notify() Thread.sleep(1000) System.out.println("thread notify finish") } } catch (InterruptedException e){ e.printStackTrace() } } }).start() } public static void main() { ThreadNotify threadNotify = new ThreadNotify() threadNotify.startThread("one") threadNotify.startThread("two") threadNotify.notifyThread() try { Thread.sleep(5000) } catch (InterruptedException e){ e.printStackTrace() } } }
在ARC机制下,没有手动添加Autorelease Pool的情况下, a...
关于代码段: NSString *obj = [[NSData alloc...
NSString *obj = [[NSData alloc] init]以下说法正确的是:()