約3,110件1ページ目

日本語のみで絞り込む

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

  • 最終更新日:1週間以内
  • 5日前 -Explicitly defaulted function declaration is a new form of function declaration that is introduced into the C++11 standard which allows you to append the '= ...

    5日前 -Explicit type conversion, also called · type casting is the conversion of one type of data to another type manually by a programmer. Here the user can typecast ...

    6日前 -概要. 型変換演算子のオーバーロードをする際、 operator キーワードの前に explicit を付加することで、その型変換演算子は明示的な型変換が行われる文脈でのみ ...

    1日前 -Obviously not. So to fix that you need to write the word explicit each time you don't want this to happen for your new constructor.

    2日前 -This happens in all the places where I have an explicit deduction guide. Interestingly, one part of the system recognizes it as a deduction guide (see ...

    13時間前 -If a C++ base class has an explicit operator bool() const; method, and a second C++ type publicly inherits from the base class, calling __convertToBool() on ...

    A.an を付けたくなりますよね。でも決まり文句ですから。 参考画像 https://www.google.co.jp/search?newwindow=1&safe=off&bi...

    A.このVBAコードの問題は、変数Pに前回表示した画像の番号を保存しているため、同じ問題が繰り返し表示されてしまうことにあります。 修正するためには、前回表示した画像の番号を保存する変数Pを、問題...

    A.警告:ぶら下がりelse(darling else)を除去するために中括弧を明示的に追加せよ。 ぶら下がりelse問題とは【Dangling else problem】 https://mar...

    2日前 -I.1: Make interfaces explicit. This rule is about correctness and means: assumptions should be stated in an interface. Otherwise, they are easily overlooked and ...

    4日前 -As if it wasn't bad enough to have the chaos of mixed explicit and implicit type casting, now we fully put our faith into the compiler, pray nobody updates code ...

    3日前 -If you want bounds checks in release builds you need to put them explicitly. The goal of the bounds checks in std::vector is for catching issues during ...

    5日前 -#include <iostream>. using namespace std;. struct A. {. A(int) { }. operator bool() const { return true; }. };. struct B. {. explicit B(int) {}.