- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
A script in the RealSense documentation for C++ suggests phrases the PXCProjection line like this:
PXCProjection *projection=device->CreateProjection();
One of my pet hates about coding documentation of any kind is when they give a heading that sets out formatting for an instruction, and then the actual code in a script that calls that instruction is nothing like the heading.
コピーされたリンク
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
A script in the RealSense documentation for C++ suggests phrases the PXCProjection line like this:
PXCProjection *projection=device->CreateProjection();
One of my pet hates about coding documentation of any kind is when they give a heading that sets out formatting for an instruction, and then the actual code in a script that calls that instruction is nothing like the heading.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Thanks !! As you said, I set up a series of instances according to the official document, this time there is no grammatical mistakes. But when I debug, it shows the following error
The cap (an instance of PXCCapture) is nullptr..... I'm almost endocrine disorders
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
A quick and dirty way to get past it may be to just sweep it under the carpet by unticking the 'Break when this exception type is thrown' box and see whether ignoring it has a negative impact on the program's running.
Alternatively, you could try this to officially mark the p variable as nullptr:
int* p = nullptr;
