Questions tagged «using»

“ using”是某些编程语言(C ++,C#,VB.NET,Haxe)中的关键字

7
使用{}语句在内部调用return是一个好方法吗?
使用Stack (){}来进行堆栈溢出: 我只想知道return在using块内调用的安全/良好方法。 对于前。 using(var scope = new TransactionScope()) { // my core logic return true; // if condition met else return false; scope.Complete(); } 我们知道最后一个大括号 dispose()将被取消。但是在上述情况下会发生什么,因为return将控件跳出了给定范围(AFAIK)... 我scope.Complete()叫我吗? 对于示波器的dispose()方法也是如此。
93 c#  return  using 


4
为什么要使用“ using”关键字来访问我的基类方法?
我编写了以下代码,以解释我的问题。如果我注释第11行(使用关键字“ using”),则编译器不会编译该文件并显示此错误:invalid conversion from 'char' to 'const char*'。void action(char)在Parent类中似乎看不到该类的方法Son。 为什么编译器以这种方式运行?还是我做错了什么? class Parent { public: virtual void action( const char how ){ this->action( &how ); } virtual void action( const char * how ) = 0; }; class Son : public Parent { public: using Parent::action; // Why should i write …
75 c++  oop  inheritance  using 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.