約95,300,000件1ページ目

日本語のみで絞り込む

条件を指定して検索しています。すべての条件を解除する

  • 最終更新日:1年以内
  • 2023/10/24 -In C++, the explicit keyword is used with a constructor to prevent it from performing implicit conversions. A C++ explicit constructor is marked to not ...

    2023/12/29 -Member functions, member classes, and static data members of class templates can be explicitly instantiated from their member definitions. Explicit ...

    2024/3/19 -Examples include conversions from smaller to larger integral types, and conversions from derived classes to base classes. Explicit conversions (casts): Explicit ...

    2024/2/9 -Explicit instruction is unambiguous, structured, systematic, and scaffolded instruction. 1 There are many descriptions of explicit instruction, ...

    2024/3/19 -Explicit type casting, also known as type conversion or type coercion, is the process of converting a value from one data type to another data type explicitly.

    2023/8/9 -1 Answer 1 ... What you mean is called duck-typing and some languages like Go use that: If it walks like a duck, it must be a duck, right? C# does not support ...

    2024/3/13 -Explicit specialization may be declared in any scope where its primary template may be defined (which may be different from the scope where the primary template ...

    2023/11/2 -Explicit implementation refers to a programming concept where a class or interface defines a method that is already declared by one of its superclasses or ...

    2023/10/20 -A class that implements both can't logically write a Draw method implementation that does the same thing. The explicit implementation syntax solves it. – ...

    2023/5/26 -If a base class doesn't offer a parameterless constructor, the derived class must make an explicit call to a base constructor by using base . A constructor ...