小编Mic*_* J.的帖子

TFS结帐锁定最佳做法

我难以说服组织中的其他人停止在结账时不加区别地锁定文件.有什么想法,我可以找到一个"官方"文件,解释为什么应该谨慎使用结账锁? Microsoft建议:

作为最佳实践,请谨慎使用"锁定类型"选项,并通知您的队友锁定项目的原因以及计划何时删除锁定.

但没有详细说明.

我可以指出的任何事情都会非常有帮助.

tfs

9
推荐指数
1
解决办法
770
查看次数

Why does using += on a nullable type result in a FORWARD_NULL defect

No doubt there are other, perhaps better ways to do this, but I'm trying to understand what is going on here.

In the below example, coverity is reporting a FORWARD_NULL defect on the fourth line.

double? foo = null;
double bar = 1.23;
foo += bar;
System.Windows.Point point = new System.Windows.Point(foo,bar);  
Run Code Online (Sandbox Code Playgroud)

it reports:

assign_zero: Assigning: foo = null.

on the foo += bar line.

in += Operator (C# Reference), I see that x += y is equivalent to x …

c# static-analysis nullable coverity

5
推荐指数
1
解决办法
106
查看次数

无法找到区域设置感知版本的StrSafe函数(StringCbPrintf_lW)

我们(错误地)使用StringCbPrintfW来编写数据库查询,该查询在使用逗号作为小数分隔符的任何语言环境中都失败了.修复很容易,对吧?采用语言环境的StringCbPrintf_lW也在strsafe.h中定义.两者都定义如下:

#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
Run Code Online (Sandbox Code Playgroud)

所以只需创建语言环境并用StringCbPrintf_lW替换StringCbPrintfW.

Intellisense很高兴,GoToDefinition很高兴,ClCompile不高兴.我一直在

错误C3861:'StringCbPrintf_lW':找不到标识符

有什么想法有什么不对?

c++ winapi strsafe visual-studio-2013

4
推荐指数
1
解决办法
122
查看次数

为什么我在导入 msxml6 时没有得到 C4192?

我们被指示消除所有 3 级警告,并被特别告知要解决 C4192。

我的代码确实属于导致 C4192 的“错误代码”示例

#import "msxml6.dll" named_guids
Run Code Online (Sandbox Code Playgroud)

并且“好代码”很容易实现

#import "msxml6.dll" exclude("ISequentialStream","_FILETIME")named_guids
Run Code Online (Sandbox Code Playgroud)

唯一的问题是我没有收到这个警告。我正在导入 msxml6.dll 的 6.30.7601.18431 版本,无论我做什么,这个警告都不会出现。

我还再次导入了它,指定了 no_auto_exclude 选项,但在生成的 tli 和 tlh 文件中找不到对 ISequentialStream 或 _FILETIME 的引用。

我将简单地更新以使用“好”代码并继续,但我仍然想知道发生了什么。

c++ visual-studio-2015

4
推荐指数
1
解决办法
1602
查看次数