I am A PHP Developer, and first time working in Visual Studio C++ and wondering if there is some way through which i can display variables or contents to debug my application.
我是一名PHP开发人员,第一次使用Visual Studio C ++,并想知道是否有一些方法可以显示变量或内容来调试我的应用程序。
Is there any functionality like Console in Chrome as console.log(myvariable)
?
Chrome中的控制台是否有像console.log(myvariable)这样的功能?
1 个解决方案
#1
0
You could use the TRACE macro.
您可以使用TRACE宏。
TRACE( "This is a TRACE statement\n" );
TRACE(“这是一个TRACE声明\ n”);
#1
0
You could use the TRACE macro.
您可以使用TRACE宏。
TRACE( "This is a TRACE statement\n" );
TRACE(“这是一个TRACE声明\ n”);