Tag: variables

什么构成C ++ 11中的“从…移到”对象的有效状态?

我一直在试图围绕C ++ 11中的移动语义如何工作,而且我在理解移动对象需要满足的条件方面遇到了很多麻烦。 看看这里的答案并不能真正解决我的问题,因为看不到我们的问题,因为我们无法看出如何以合理的方式将它应用于pimpl对象,尽pipe移动语义对于pimpls来说是完美的 。 我的问题的最简单的例子涉及到pimpl的成语,就像这样: class Foo { std::unique_ptr<FooImpl> impl_; public: // Inlining FooImpl's constructors for brevity's sake; otherwise it // defeats the point. Foo() : impl_(new FooImpl()) {} Foo(const Foo & rhs) : impl_(new FooImpl(*rhs.impl_)) {} Foo(Foo && rhs) : impl_(std::move(rhs.impl_)) {} Foo & operator=(Foo rhs) { std::swap(impl_, rhs.impl_); return *this; } void […]

C# – Winforms – 全局variables

我希望一些variables在整个项目中是全局的,并且可以在任何forms下使用。 我该怎么做?

扩展应用程序以全局共享variables

我试图在应用程序的各种活动中共享两个ArrayLists,使用这里解释的scheme: 如何在Android中声明全局variables? 。 这是我的应用程序子类: public class GlobalVars extends Application{ ArrayList<Player> players = new ArrayList<Player>(); ArrayList<String> playerNames = new ArrayList<String>(); public ArrayList<Player> getPlayers(){ return players; } public ArrayList<String> getPlayerNames(){ return playerNames; } public void setPlayers(ArrayList<Player> p){ players = p; } public void setPlayerNames(ArrayList<String> pn){ playerNames = pn; } } 并使用代码: GlobalVars gv = (GlobalVars)getApplicationContext(); players = […]

我如何访问C中的阴影全局variables?

我如何访问C中的阴影全局variables? 在C ++中,我可以使用::作为全局命名空间。

在iframe和父类之间传递jQueryvariables

我如何使用jQuery和iframe 。 获取并传递从iframe到body和从body到iframe var 。 我有下面的例子。 我怎样才能点击iframe的button,并使其在#test body #test 。 如何在iframe中准备好var x。 <body> var x = "whatever"; <div id"test"></div> <iframe width="200px" height="200px" src="page.html"></iframe> </body> 里面page.html我有 <button>clickme</button> <script> var elm = $('<span>content</span>'); elm.appendTo('#test') </script>

如果(cin >> x) – 为什么你可以使用这种情况?

我一直在使用“加速C ++”在夏天学习C ++,并且有一个我似乎并没有正确理解的概念。 为什么是 int x; if (cin >> x){} 相当于 cin >> x; if (cin){} 通过查看代码,在我看来,我们使用cin作为variables。 但是,我认为这是一个function。 为什么我们可以用这种方式使用cin,当x是我们input到键盘的任何值时?

Bash中的“$ @”和“$ *”有什么区别?

在我看来,他们都存储所有的命令行参数。 那么两者有什么不同?

你如何得到一个variables的名称,因为它的声明是物理types的?

可能重复: 在C#中查找传递给函数的variables名 下面的课程包含实地城市。 我需要dynamic确定字段的名称,因为它是在类声明中键入的,即我需要从对象城市的实例中获取string“城市”。 我试图通过检查其在DoSomething()中的types来做到这一点,但在debugging器中检查types的内容时找不到它。 可能吗? public class Person { public string city = "New York"; public Person() { } public void DoSomething() { Type t = city.GetType(); string field_name = t.SomeUnkownFunction(); //would return the string "city" if it existed! } } 有些人在下面的答案中问我为什么要这样做。 这是为什么。 在我现实世界的情况下,城市上面有一个自定义的属性。 [MyCustomAttribute("param1", "param2", etc)] public string city = "New York"; 我需要在其他代码中的这个属性。 […]

类和实例variables有什么区别?

Python中的类和实例variables有什么区别? class Complex: a = 1 和 class Complex: def __init__(self): self.a = 1 使用调用: x = Complex().a在两种情况下都将x赋值为1。 有关__init__()和self的更深入的答案将不胜感激。

环境variables来控制java.io.tmpdir?

我使用TMP环境variables来控制gcc写入临时文件的地方,但是我似乎无法find与java的createTempFile API等价的东西。 这样的环境variables是否存在?