About 10,600,000 results
Open links in new tab
  1. What is the purpose of the `self` parameter? Why is it needed?

    For a language-agnostic consideration of the design decision, see What is the advantage of having this/self pointer mandatory explicit?. To close debugging questions where OP omitted a …

  2. php - When should I use 'self' over '$this'? - Stack Overflow

    In PHP 5, what is the difference between using self and $this? When is each appropriate?

  3. Mockito is currently self-attaching to enable the inline-mock …

    Dec 13, 2024 · I get this warning while testing in Spring Boot: Mockito is currently self-attaching to enable the inline-mock-maker. This will no longer work in future releases of the JDK. Please …

  4. Why do I get "TypeError: Missing 1 required positional argument: …

    The self keyword in Python is analogous to this keyword in C++ / Java / C#. In Python 2 it is done implicitly by the compiler (yes Python does compilation internally).

  5. Difference between Python self and Java this - Stack Overflow

    Feb 11, 2014 · Moving further: Technically both self and this are used for the same thing. They are used to access the variable associated with the current instance. Only difference is, you …

  6. How can I generate a self-signed SSL certificate using OpenSSL?

    The W3C's WebAppSec Working Group is starting to look at the issue. See, for example, Proposal: Marking HTTP As Non-Secure. How to create a self-signed certificate with …

  7. Python class methods: when is self not needed - Stack Overflow

    Jun 25, 2017 · 17 What is self? In Python, every normal method is forced to accept a parameter commonly named self. This is an instance of class - an object. This is how Python methods …

  8. How to avoid explicit 'self' in Python? - Stack Overflow

    Dec 31, 2009 · The "self" is the conventional placeholder of the current object instance of a class. Its used when you want to refer to the object's property or field or method inside a class as if …

  9. git - SSL certificate problem: self signed certificate in certificate ...

    Aug 2, 2019 · The reason was an SSL certificate problem: 'self-signed certificate in certificate chain.'" Protected question. To answer this question, you need to have at least 10 reputation …

  10. How to implement __iter__(self) for a container object (Python)

    Oct 26, 2010 · __iter__(self) However, upon following up the link to Iterator Types in the Python reference manual, there are no examples given of how to implement your own. Can someone …