About 18,400,000 results
Open links in new tab
  1. How does the @property decorator work in Python?

    I would like to understand how the built-in function property works. What confuses me is that property can also be used as a decorator, but it only takes arguments when used as a built-in …

  2. OOP Terminology: class, attribute, property, field, data member

    For instance in this article I read this (.. class attribute (or class property, field, or data member) I have seen rather well cut out questions that show that there is a difference between class …

  3. What does the => operator mean in a property or method?

    In my situation I had my property auto initialize a command in a ViewModel for a View. I changed the property to use expression bodied initializer and the command CanExecute stopped …

  4. error TS2339: Property 'x' does not exist on type 'Y'

    When accessing a property, the "dot" syntax (images.main) supposes, I think, that it already exists. I had such problems without Typescript, in "vanilla" Javascript, where I tried to access …

  5. oop - what is a member vs. a property - Stack Overflow

    Jun 16, 2016 · Property is a broad concept used to denote a particular characteristic of a class which, once the class is instantiated, will help define the object's state. The following …

  6. python - How to make a class property? - Stack Overflow

    Descriptors like property need to be in the type's dictionary to work their magic. So those in a class definition primarily affect the behaviour of instances of the class, with minimal effect on …

  7. How to add property to a class dynamically? - Stack Overflow

    16 How to add property to a python class dynamically? Say you have an object that you want to add a property to. Typically, I want to use properties when I need to begin managing access to …

  8. 'property: 0' or 'property: 0px' in CSS? - Stack Overflow

    element#id { property: 0px; } I use property: 0px; all the time, as I find it cleaner looking, but I'm not really sure if the browser interprets 0px differently than 0. Does anyone know which one is …

  9. Detecting an undefined object property - Stack Overflow

    Aug 26, 2008 · A given property name can be absent on an object (producing the value undefined when read), present on the object itself with the value undefined, present on the object’s …

  10. How can I avoid 'cannot read property of undefined' errors?

    2 In str's answer, value 'undefined' will be returned instead of the set default value if the property is undefined. This sometimes can cause bugs. The following will make sure the defaultVal will …