【2021】360校招技术岗-客观题(IOS)
时长:120分钟 总分:52分
135浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 30 | 12 |
设有一个大小为6的顺序循环队列,采用少用一个存储单元的策略来区分队满与队空...
张华为辉灿连锁便利设计了后台数据库系统,随着店面增多、经营规模扩大、聘用员...
随着4G网络的普及,智能手机的推广,手机使用者的数量越来越高。作为大型运营...
四海经贸有限公司的后台营业数据库进行更新改造,以适应网络交易的大吞吐量批量...
在线交易的数据安全关系重大,为此数据库设计者都会写很多存储程序来生成制式标...
在线交易的数据安全关系重大,为此数据库设计者都会写很多存储程序来生成制式标准化的报表,为了能够更快速更准确的访问到数据库内容,通常会先行进行多方面的测试,应该怎么做?( )。
下面代码执行后的输出结果为()?@interfacePerson:NSOb...
@interface Person:NSObject{
NSString* name
}
- (void) setName:(NSString*) yourName
@end
@interface PersonMe:Person {
NSUInteger age
}
- (void) setAge:(NSUInteger) age
- (void) setName:(NSString*) yourName andAge:(NSUInteger) age
@end
@implementation PersonMe
- (void) setName:(NSString*) yourName andAge:(NSUInteger) age {
[self setAge:age]
[super setName:yourName]
NSLog(@"self' class is %@", [self class])
NSLog(@"super' class is %@", [super class])
}
@end
int main(int argc, char* argv[]) {
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]
PersonMe* me = [[PersonMe alloc] init]
[me setName:@"asdf" andAge:18]
[me release]
[pool drain]
return 0
}