请教一下 假设一个类别里面的很多方法
都会使用到 classExample 的物件好了
每个方法都去 new 一个 跟 共用同一个会有什么优缺点吗
前提是如果假设很确定每个方法不会同时启动的话
因为我一直在想 一直 new 东西
会不会用很多内存或是拖慢速度
还是拖慢的速度几乎是不影响的
为了避免方法之间互相影响 最好都是 new 一个
谢谢
譬如
1. 都 new 一个
methoA
{
classExample example = getObjectFromSomeWhere();
classExample.doSomething();
}
methoB
{
classExample example = getObjectFromSomeWhere();
classExample.doSomething();
}
2. 共用
classExample sharedExample = new classExample()
methoA
{
sharedExample = getObjectFromSomeWhere();
doSomething();
}
methoB
{
sharedExample = getObjectFromSomeWhere();
doSomething();
}