以下两行之间的内存角度是否有任何区别
NSString *dbFilePath =[[NSString alloc]initWithString:[[NSBundle mainBundle] pathForResource:dbName ofType:nil]];
和
  NSString *dbFilePath =[[[NSBundle mainBundle] pathForResource:dbName ofType:nil] retain]; 
"[NSString alloc]initWithString:" 或者只是 "retain"
提前致谢