Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以向我解释这条线的作用吗?
XMLParser *parser1 = [[XMLParser alloc] initXMLParserWithID:1];
如何检查 XMLParse 中的 ID?
alloc为对象分配内存,初始化器将它们设置为默认状态。有些对象需要额外的信息才能正确设置,所以它们的初始化器有参数。在这种情况下,XMLParser对象需要正确设置 ID 号,因此它的初始化程序有一个参数,您可以在其中传递该编号。
alloc
XMLParser
你能改写这个或举一个你想做的例子吗?不清楚你在问什么。