T
TomislaW
What is the purpose or difference between
private static and private method in non-static class?
private static and private method in non-static class?
Dan said:I think the confusion lies in that a static method, as you say, does
not require an instantiation of the host class, but being private,
nothing can access it but an instantiation of the host?!
Therefore, would it be right to suggest that there's never a reason
for using private and static together in declaring a function?