c# - New thread signature (static vs non static method) -
i guess have simple question used have code:
thread mythread = new thread(mainprocessingthread); mythread.isbackground = true; isthreadrunning = true; mythread.start();
and method:
public void mainprocessingthread() { }
you can see method above isn't static. , code used work. have passed name of method (not forminstance.mainprocessingthread
) thread above. did wrong? how did work?
ps mainprocessingthread
member of main form. can access form member(instance) variables directly method?
given mainprocessingthread
instance method, following line
thread mythread = new thread(mainprocessingthread);
is shorthand of
thread mythread = new thread(new threadstart(this.mainprocessingthread));
so, you're using object indeed. pointer taken implicit reference. able this, should calling in instance method/property, otherwise you'll not have access this
reference. example if in static method, you'll compilation error because don't have access this
keyword there.
on other hand, if method happens static one, gets compiled into
thread mythread = new thread(new threadstart(classname.mainprocessingthread));
Comments
Post a Comment