[Solved] When do I use a + or – at the beginning of creating a method? [duplicate]
[ad_1] As has been indicated here the + indicates a class method, and the – indicates an instance method. The important difference that will likely be relevant to your programming is when to use a class versus and instance method. A class method (+) is simply a method you call using the class. So, something … Read more