User Motti - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T19:14:23Zhttp://stackoverflow.com/feeds/user/3848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/787533/is-pragma-once-a-safe-include-guard/1946730#19467300Answer by Motti for Is #pragma once a safe include guard?Motti2009-12-22T14:35:00Z2009-12-22T14:35:00Z<p><code>#pragma once</code> does have one drawback (other than being non-standard) and that is if you have the same file in different locations (we have this due to the way our build system works) then the compiler will think these are different files.</p>
http://stackoverflow.com/questions/1936013/how-can-i-create-a-stdvector-with-64-bit-indexes1How can I create a std::vector with 64 bit indexes?Motti2009-12-20T14:38:50Z2009-12-20T14:56:16Z
<p>I want to create a <strong>big</strong> <code>std::vector</code> so <code>operator[]</code> should receive <code>long long</code> rather than <code>unsigned int</code>, I tried writing my own allocator:</p>
<pre><code>template <typename T>
struct allocator64 : std::allocator<T> {
typedef long long difference_type;
typedef unsigned long long size_type;
};
</code></pre>
<p>But when I try the following:</p>
<pre><code>long long n = 5;
std::vector<int, allocator64<int> > vec(n);
vec[n-1] = 2;
</code></pre>
<p>I get the following warning for the second and third line:</p>
<blockquote>
<p>warning C4244: 'argument' : conversion from '__int64' to 'unsigned int', possible loss of data</p>
</blockquote>
<p>What am I missing? I thought the type for <code>operator[]</code> and for the size constructor should come from <code>allocator::size_type</code>.</p>
<p>I'm using VS9 (2008).</p>
http://stackoverflow.com/questions/258988/will-the-dynamic-keyword-in-c4-support-extension-methods6Will the dynamic keyword in C#4 support extension methods?Motti2008-11-03T15:28:58Z2009-12-17T08:09:24Z
<p>I'm <a href="http://channel9.msdn.com/shows/Going+Deep/Inside-C-40-dynamic-type-optional-parameters-more-COM-friendly/" rel="nofollow">listening to a talk</a> about <strong>C#4</strong>'s <code>dynamic</code> keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods?</p>
<pre><code>public static class StrExtension {
public static string twice(this string str) { return str + str; }
}
...
dynamic x = "Yo";
x.twice(); // will this work?
</code></pre>
http://stackoverflow.com/questions/1907012/which-stl-containers-require-the-use-of-cadapt0Which STL containers require the use of CAdapt?Motti2009-12-15T12:10:30Z2009-12-15T20:52:19Z
<p>The <a href="http://msdn.microsoft.com/en-us/library/bs6acf5x.aspx" rel="nofollow"><code>CAdapt</code></a> class is provided by Microsoft in order to enable using classes that override the address of operator (<code>operator&</code>) in STL containers. MSDN has this to say about the use of <code>CAdapt</code>:</p>
<blockquote>
<p>Typically, you will use <code>CAdapt</code> when you want to store <code>CComBSTR</code>, <code>CComPtr</code>, <code>CComQIPtr</code>, or <code>_com_ptr_t</code> objects in an STL container such as a <code>list</code>.</p>
</blockquote>
<p>On to my quesiton:</p>
<p><strong>What is the full list of STL containers with which <code>CAdapt</code> should be used?</strong></p>
<p>If the container contains a key/value pair (such as <code>map</code>) please specify whether <code>CAdapt</code> is needed for the key or the value.</p>
http://stackoverflow.com/questions/1869735/strip-trailing-characters-from-path-string/1869841#18698411Answer by Motti for Strip trailing characters from path stringMotti2009-12-08T21:06:42Z2009-12-08T21:06:42Z<p>The <code>Path</code> solutions are better but if you still want the regex (for learning reasons) here it is</p>
<pre><code>Regex.Replace(@"c:\aaa\bb\c", @"^([^\\]*\\[^\\]*)\\.*", @"$1")
</code></pre>
<p>To break it down:</p>
<pre><code>^ // begins with
( // start capturing what you want to save
[^\\]* // zero or more characters that are _not_ backslash
\\ // followed by a backslash
[^\\]* // again zero or more characters that are _not_ backslash
) // stop capturing
\\ // a backslash
.* // followed by anything
</code></pre>
<p>Then the <code>$1</code> gives the value of the capture (i.e. the text that matched what was in the first parentheses). </p>
http://stackoverflow.com/questions/333829/why-cant-i-define-a-default-constructor-for-a-struct-in-net14Why can't I define a default constructor for a struct in .NETMotti2008-12-02T12:39:25Z2009-12-02T11:11:24Z
<p>In .NET a value type (C# <code>struct</code>) can't have a constructor with no parameters. According to <a href="http://stackoverflow.com/questions/203695/structure-vs-class-in-c#204009">this post</a> this is mandated by the CLI spec. What happes is that for every value-type a default constructor is created (by the compiler?) which initialized all members to zero (or <code>null</code>).</p>
<p>Does anyone know why it is disallowed to define such a default constructor?</p>
<p>One trivial use is for rational numbers</p>
<pre><code>public struct Rational {
private long numerator;
private long denominator;
public Rational(long num, long denom)
{ /* Todo: Find GCD etc. */ }
public Rational(long num)
{
numerator = num;
denominator = 1;
}
public Rational() // This is not allowed
{
numerator = 0;
denominator = 1;
}
}
</code></pre>
<p>Using current C# a default Rational is <code>0/0</code> which is not so cool.</p>
<p><strong>P.S.</strong> Will default parameters help solve this for C#4.0 or will the CLR defined default constructor be called?</p>
<p><hr /></p>
<p><strong>Edit:</strong> <a href="http://stackoverflow.com/questions/333829/why-cant-i-define-a-default-constructor-for-a-struct-in-net#333840">Jon Skeet</a> answered:</p>
<blockquote>
<p>To use your example, what would you want to happen when someone did:</p>
<pre><code> Rational[] fractions = new Rational[1000];
</code></pre>
<p>Should it run through your constructor 1000 times?</p>
</blockquote>
<p>Sure it should, that's why I wrote the default constructor in the first place, the CLR should use the <em>default zeroing</em> constructor when no explicit default ctor is defined, that way you only pay for what you use. Then if I want a container of 1000 non default <code>Rational</code>s (and want to optimize away the 1000 constructions) I will use a <code>List<Rational></code> rather than an array. </p>
<p>This reason, in my mind, is not strong enough to prevent definition of a default constructor.</p>
http://stackoverflow.com/questions/1226634/how-to-use-base-classs-constructors-and-assignment-operator-in-c/1226957#12269572Answer by Motti for How to use base class's constructors and assignment operator in C++?Motti2009-08-04T11:32:25Z2009-12-01T07:22:26Z<p>You can explicitly call constructors and assignment operators:</p>
<pre><code>class Base {
//...
public:
Base(const Base&) { /*...*/ }
Base& operator=(const Base&) { /*...*/ }
};
class Derived : public Base
{
int additional_;
public:
Derived(const Derived& d)
: Base(d) // dispatch to base copy constructor
, additional_(d.additional_)
{
}
Derived& operator=(const Derived& d)
{
Base::operator=(d);
additional_ = d.additional_;
return *this;
}
};
</code></pre>
<p>The interesting thing is that this works even if you didn't explicitly define these functions (it then uses the compiler generated functions).</p>
<pre><code>class ImplicitBase {
int value_;
// No operator=() defined
};
class Derived : public ImplicitBase {
const char* name_;
public:
Derived& operator=(const Derived& d)
{
ImplicitBase::operator=(d); // Call compiler generated operator=
name_ = strdup(d.name_);
return *this;
}
};
</code></pre>
http://stackoverflow.com/questions/1821906/why-doesnt-com-use-a-static-empty-bstr2Why doesn't COM use a static empty BSTR?Motti2009-11-30T19:33:36Z2009-11-30T21:41:01Z
<p>When allocating an empty <code>BSTR</code>, either by <code>SysAllocString(L"")</code> or by <code>SysAllocStringLen(str, 0)</code> you always get a new <code>BSTR</code> (at least by the test I made). <code>BSTR</code>s aren't typically shared (like Java/.NET interment) since they are mutable but an empty string is, for all intents and purposes, immutable.</p>
<p>My question (at long last) is why doesn't COM use the trivial optimization of always returning the same string when creating an empty <code>BSTR</code> (and ignoring it in <code>SysFreeString</code>)? Is there a compelling reason not to do so (because my reasoning is flawed) or is it just that it wasn't thought to be important enough?</p>
http://stackoverflow.com/questions/1791447/copying-between-variant-and-variantt/1803541#18035411Answer by Motti for Copying between VARIANT and _variant_tMotti2009-11-26T13:00:58Z2009-11-26T13:00:58Z<p>If the <code>VARIANT</code> contains an object or a <code>BSTR</code> you <strong>will</strong> run into trouble when you deallocate the safearray since safearray deallocation will free the resource which it doesn't own. So when either the <code>_variant_t</code> or the safearray is destroyed the other will have a reference to a deallocated object.</p>
<p>For example if the <code>VARIANT</code> contains a pointer to <code>IUnknown</code> you'll mess up the reference count by calling <code>Release</code> more times than <code>AddRef</code>, if it contains a <code>BSTR</code> you'll just copy the pointer and not allocate a new string for the new variable.</p>
<p>This is why you should use <code>VariantCopy</code>, if you want to avoid <code>Variant*</code> methods (for a reason I can't understand) this can be done with <code>_variant_t::Detach()</code></p>
<pre><code>void funcB(VARIANT &V,_variant_t &vt)
{
_variant_t temp = vt;
V = temp.Detach();
// or in one line V = _variant_t(vt).Detach();
}
</code></pre>
http://stackoverflow.com/questions/171641/should-there-be-a-difference-between-an-empty-bstr-and-a-null-bstr2Should there be a difference between an empty BSTR and a NULL BSTR?Motti2008-10-05T07:45:02Z2009-11-26T11:04:35Z
<p>When maintaining a <code>COM</code> interface should an empty <code>BSTR</code> be treated the same way as <code>NULL</code>?
In other words should these two function calls produce the same result?</p>
<pre><code> // Empty BSTR
CComBSTR empty(L""); // Or SysAllocString(L"")
someObj->Foo(empty);
// NULL BSTR
someObj->Foo(NULL);
</code></pre>
http://stackoverflow.com/questions/1778491/how-does-one-return-a-local-ccomsafearray-to-a-lpsafearray-output-parameter2How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?Motti2009-11-22T11:43:09Z2009-11-23T14:43:08Z
<p>I have a COM function that should return a SafeArray via a <code>LPSAFEARRAY*</code> out parameter.
The function creates the SafeArray using ATL's <code>CComSafeArray</code> template class.
My naive implementation uses <code>CComSafeArray<T>::Detach()</code> in order to move ownership from the local variable to the output parameter:</p>
<pre><code>void foo(LPSAFEARRAY* psa)
{
CComSafeArray<VARIANT> ret;
ret.Add(CComVariant(42));
*psa = ret.Detach();
}
int main()
{
CComSafeArray<VARIANT> sa;
foo(sa.GetSafeArrayPtr());
std::cout << sa[0].lVal << std::endl;
}
</code></pre>
<p>The problem is that <code>CComSafeArray::Detach()</code> performs an <code>Unlock</code> operation so that when the new owner of the SafeArray (main's <code>sa</code> in this case) is destroyed the lock isn't zero and <code>Destroy</code> fails to unlock the SafeArray with <code>E_UNEXPECTED</code> (this leads to a memory leak since the SafeArray isn't deallocated).</p>
<p>What is the correct way to transfer ownership between to CComSafeArrays through a COM method boundary?</p>
<p><hr></p>
<p><strong>Edit:</strong> From the single answer so far it seems that the error is on the client side (<code>main</code>) and not from the server side (<code>foo</code>), but I find it hard to believe that <code>CComSafeArray</code> wasn't designed for this trivial use-case, there must be an elegant way to get a SafeArray out of a COM method into a <code>CComSafeArray</code>.</p>
http://stackoverflow.com/questions/445286/what-is-the-correct-syntax-when-passing-ccomsafearray-to-a-method-expecting-safea/1778372#17783720Answer by Motti for What is the correct syntax when passing CComSafeArray to a method expecting SAFEARRAY**Motti2009-11-22T10:29:34Z2009-11-22T11:32:25Z<p>You should use <code>CComSafeArray<T>::</code><a href="http://msdn.microsoft.com/en-us/library/1s10dhw5.aspx" rel="nofollow"><code>GetSafeArrayPtr()</code></a>. However <a href="http://stackoverflow.com/questions/445286/what-is-the-correct-syntax-when-passing-ccomsafearray-to-a-method-expecting-safea/445876#445876">Aamir</a>'s way of using <code>&(sa.m_psa)</code> should work too.</p>
http://stackoverflow.com/questions/1758608/is-there-an-non-short-circuited-logical-and-in-c/1758941#17589417Answer by Motti for Is there an Non-Short circuited logical "and" in C++?Motti2009-11-18T20:45:05Z2009-11-18T20:45:05Z<p>Yes there are built in operators for doing this.
<code>+</code> does a non short circuiting OR and <code>*</code> does an AND. <h1>☺</h1></p>
<pre><code>#include <iostream>
using namespace std;
void print(bool b)
{
cout << boolalpha << b << endl;
}
int main()
{
print(true + false);
print(true * false);
}
</code></pre>
<p>Output: </p>
<blockquote>
<p>true</p>
<p>false</p>
</blockquote>
http://stackoverflow.com/questions/1017251/if-findnexturlcacheentry-fails-how-can-i-retrieve-info-of-the-failed-entry-aga/1756730#17567300Answer by Motti for If FindNextUrlCacheEntry() fails, how can I retrieve info of the failed entry again?Motti2009-11-18T15:20:51Z2009-11-18T15:20:51Z<p>For what it's worth this seems to be solved in Vista.</p>
http://stackoverflow.com/questions/1747494/conjugate-function-for-complex-number/1747541#17475418Answer by Motti for Conjugate function for complex number Motti2009-11-17T09:16:26Z2009-11-17T09:16:26Z<p>The tilde (~) operator is a unary operator so it shouldn't accept a parameter (it works on <code>*this</code>). You also forgot to return a value from <code>operator~</code>.</p>
<pre><code>Complex operator~() const
{
return Complex( real, -1 * imaginenary);
}
</code></pre>
<p>See your fixed code <a href="http://codepad.org/WcmFdaWl" rel="nofollow">here</a></p>
<p><strong>BTW:</strong> It's spelt <em>imaginary</em>.</p>
http://stackoverflow.com/questions/1742700/does-a-destructor-always-get-called-for-a-delete-operator-even-when-it-is-overlo/1742732#17427323Answer by Motti for Does a destructor always get called for a delete operator, even when it is overloaded?Motti2009-11-16T15:04:52Z2009-11-16T15:21:56Z<p>The <code>delete operator</code> is used to free memory, it doesn't change whether the destructor is called or not. First the destructor is called, and only after that is the <code>delete operator</code> used to deallocate the memory. </p>
<p>In other words it's not possible to achieve the semantics you're aiming at with C++'s destructors and delete operators.</p>
<p><strong><a href="http://codepad.org/nNJaejm3" rel="nofollow">Sample</a>:</strong></p>
<pre><code>#include <iostream>
#include <new>
using namespace std;
struct foo {
~foo() { cout << "destructor\n"; }
void operator delete(void* p) {
cout << "operator delete (not explicitly calling destructor)\n";
free(p);
cout << "After delete\n";
}
};
int main()
{
void *pv = malloc(sizeof(foo));
foo* pf = new (pv) foo; // use placement new
delete pf;
}
</code></pre>
<p><strong>Output:</strong></p>
<blockquote>
<p>destructor</p>
<p>operator delete (not explicitly calling destructor)</p>
<p>After delete</p>
</blockquote>
http://stackoverflow.com/questions/1679606/whats-the-difference-between-domain-and-non-domain-cookies1What's the difference between "domain" and "non-domain" cookies?Motti2009-11-05T10:20:13Z2009-11-05T11:04:50Z
<p>I'm reading the <a href="https://developer.mozilla.org/en/nsICookieManager2#add.28.29" rel="nofollow">MDC entry for <code>nsICookieManager2.add</code></a> and it talks about <em>domain</em> and <em>non-domain</em> cookies. What are the differences between the two types of cookies?</p>
http://stackoverflow.com/questions/1666176/intermediate-results-using-expression-templates/1666931#16669311Answer by Motti for Intermediate results using expression templatesMotti2009-11-03T12:04:32Z2009-11-03T12:04:32Z<p>I don't understand your question. <code>auto</code> is going to be reused in <code>C++0x</code> for <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Type%5Finference" rel="nofollow">automatic type inference</a>. </p>
<p>I personally see this as a drawback for expression templates since they often relay on having a smaller life span than the objects they are built upon which can turn out to be false if the expression template is captured as I explain <a href="http://stackoverflow.com/questions/1155389/c0x-concepts-are-gone-which-other-features-should-go-too/1157486#1157486">here</a>.</p>
http://stackoverflow.com/questions/1658034/working-with-hresult-interop-and-related-things-in-c/1658266#16582660Answer by Motti for Working with HResult, interop and related things in C#Motti2009-11-01T20:48:27Z2009-11-01T20:48:27Z<p>On 32 bit platforms an <code>int</code> is 32 bits long which is 4 bytes of 8 hexadecimal digits. So <code>E_FAIL</code> would be <code>0x80004005</code>, (which is what the code you pasted shows. If you dump this value on a 64 bit machine then it'll take up twice as much storage and since numbers are sign extended and the leading 8 (binary <code>100</code>) means the sign bit is <code>1</code> then it's ones all the way. <code>1111</code> in binary is <code>F</code> in hex which brings all the <code>F</code>s you see. </p>
http://stackoverflow.com/questions/887255/why-do-property-setters-and-getters-clash-with-getx-and-setx-methods3Why do property setters and getters clash with get_X and set_X methods?Motti2009-05-20T10:46:34Z2009-10-26T10:38:43Z
<p>In <code>.NET</code> properties are supposed to be first class citizens however in the <code>IL</code> code property getters and setters are implemented as <code>get_</code><em>PropertyName</em> and <code>set_</code><em>PropertyName</em>.</p>
<pre><code>class Property
{
int Value { get { return 42; } }
int get_Value() { return 6 * 9; }
void set_Value(int i) { } // Error even though Value is a read only property
}
</code></pre>
<p><strong>Output:</strong></p>
<blockquote>
<p>error CS0082: Type 'SO.Property' already reserves a member called 'get_Value' with the same parameter types</p>
<p>error CS0082: Type 'SO.Property' already reserves a member called 'set_Value' with the same parameter types</p>
</blockquote>
<p>Why did the designers of <code>.NET</code> decide to use a name that may clash with user code? They could have used an illegal character (as Java uses <code>$</code> for inner class stuff).</p>
http://stackoverflow.com/questions/1622323/is-illegal-for-a-struct/1623414#16234140Answer by Motti for * is illegal for a struct?Motti2009-10-26T06:51:54Z2009-10-26T06:51:54Z<p><strong>Edit:</strong> I now see that the original question was tagged <code>C</code> and not <code>C++</code> and someone erroneously tagged it <code>C++</code> (reverted the tagging).</p>
<p><hr /></p>
<p>One solution, as others mentioned, is to add a <code>typedef</code> before the <code>struct</code> declaration however since this is <code>C++</code> (according to the question's tag) and not <code>C</code> a more idiomatic and shorter way would be to just drop the trailing "String"</p>
<pre><code>struct String {
int length;
int capacity;
unsigned check;
char ptr[0];
};
</code></pre>
<p>This is enough to introduce a type called <code>String</code> the reason your original code didn't work was that in addition to introducing a type called <code>String</code> you introduced a variable called <code>String</code> which hid the type.</p>
http://stackoverflow.com/questions/1621574/mains-signature-in-c/1621664#16216646Answer by Motti for Main's Signature in C++Motti2009-10-25T18:36:57Z2009-10-25T18:36:57Z<p>The C++98 standard says in section 3.6.1.2 </p>
<blockquote>
<p>It shall have a return type of type <code>int</code>, but otherwise its type is implementation-defined. All implementations shall allow both the following definitions of <code>main</code>: <code>int main()</code> and <code>int main(int argc, char* argv[])</code></p>
</blockquote>
<p>So it's not mandated by the standard that the env accepting <code>main</code> is acceptable but it is permissible. </p>
http://stackoverflow.com/questions/1425107/how-to-pass-a-safearray-from-c-to-com/1599708#15997081Answer by Motti for How to pass a SAFEARRAY from C# to COM?Motti2009-10-21T09:29:11Z2009-10-21T09:29:11Z<p>I think the problem here is that you're using a <code>SAFEARRAY</code> of user defined types (UDT), <code>SAFEARRAY</code>s of <code>VARIANT</code>, <code>BSTR</code> and <code>IUnknown</code> work out of the box but for <code>UDT</code>s you need to help the marshaller along. See this article in MSDN regarding <a href="http://msdn.microsoft.com/en-us/library/ms221212.aspx" rel="nofollow">Passing Safearray of UDTs</a>.</p>
http://stackoverflow.com/questions/917214/web-extensibility/1550153#15501530Answer by Motti for Web ExtensibilityMotti2009-10-11T08:07:13Z2009-10-20T20:44:53Z<p>The prerequisites for QTP web extensibility are QTP 9.5 or later (with IE) and you can find a tutorial on the installation DVD under the extensibilities sub-menu. </p>
<p>You can find a (not very flattering) description of implementing an extensibility in the <a href="http://www.advancedqtp.com/DemoMTW/content/tech.web%5Fext.html" rel="nofollow">advanced QTP blog</a>.</p>
<p>If you're using QTP 10 then a <a href="http://support.openview.hp.com/selfsolve/document/KM771788" rel="nofollow">Web2.0 feature pack has been released</a> which includes a tool called <a href="http://www.youtube.com/watch?v=Dttt%5FP1D4EU" rel="nofollow">Extensibility Accelerator</a> which makes it much easier to create a web extensibility project.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/235848/most-astonishing-violation-of-the-principle-of-least-astonishment/236876#23687652Answer by Motti for Most Astonishing Violation of the Principle of Least AstonishmentMotti2008-10-25T19:20:25Z2009-10-20T09:50:21Z<p>Outlook takes <kbd>Ctr</kbd>-<kbd>F</kbd> to mean <em>forward</em> rather than <em>find</em> as all other Microsoft applications do. (<kbd>F4</kbd> is find in Outlook).</p>
http://stackoverflow.com/questions/1584939/is-it-possible-to-remote-debug-a-virtualbox-with-visual-studio2Is it possible to remote debug a VirtualBox with visual studio?Motti2009-10-18T13:50:58Z2009-10-19T11:58:04Z
<p>I'm running different versions of our application on Sun's open source <a href="http://www.virtualbox.org/" rel="nofollow">VirtualBox</a>, is it possible to remote debug the app from the host OS with Visual Studio? The problem is that in Visual Studio when I want to attach to a remote machine I have to enter either a computer name or IP and the IP I get from within the virtual box isn't pingable from the host machine.</p>
<p>I'm primarily interested in debugging native code (so I can run with no authentication) but if there's a way to debug managed code too please let me know.</p>
<p>I should note that the host OS is Vista and the guest is XP.</p>
<p><hr /></p>
<p>Thanks to Mark I got things working, I'll note all the steps I had to take for future reference:</p>
<ol>
<li>Change the VM network from <code>NAT</code> to <code>Bridged Adapter</code> (have to power off the VM first)</li>
<li><p>In the guest OS change the default security setting to <code>Classic - local users authenticate as themselves</code> as <a href="http://kbalertz.com/833900/debug-computers-running-Windows-Workgroup-Visual-Studio.aspx" rel="nofollow">described here</a>:</p>
<ul>
<li><code>Control Panel -> Administrative Tools -> Local Security Policy</code></li>
<li>Chage <code>Sharing and security model for local accounts</code> to <strong>Classic - local users authenticate as themselves</strong></li>
</ul></li>
<li><p>Reboot guest OS</p></li>
<li>Disabled <a href="http://support.microsoft.com/kb/283673" rel="nofollow">the firewall</a> on the guest OS
<ul>
<li>If <code>msvsmon</code> can't do it by itself</li>
<li><code>firewall.cpl</code></li>
</ul></li>
</ol>
http://stackoverflow.com/questions/1585165/possible-outcome-in-c/1585173#158517310Answer by Motti for Possible outcome in C#Motti2009-10-18T15:33:13Z2009-10-18T15:39:36Z<p>You're selecting the arrays, you should be selecting <code>first</code>, <code>second</code>...</p>
<pre><code>select new { possibility = first + "," + second + "," + third + "," + fourth };
</code></pre>
<p><hr /></p>
<p>BTW you don't need to create different identical coins, you can toss the same coin several times:</p>
<pre><code> var coin = new string[] { "Head", "Tail" };
var outcome =
from first in coin
from second in coin
from third in coin
from fourth in coin
select new { possibility = first + "," + second + "," + third + "," + fourth
</code></pre>
http://stackoverflow.com/questions/1568565/what-alternatives-exist-for-running-qtp-tests-in-batch/1572780#15727802Answer by Motti for What alternatives exist for running QTP tests in batch?Motti2009-10-15T14:35:35Z2009-10-15T14:35:35Z<p>The canonical way to do this is via <a href="https://h10078.www1.hp.com/cda/hpms/display/main/hpms%5Fcontent.jsp?zn=bto&cp=1-11-127-24%5F4000%5F100%5F%5F" rel="nofollow">Quality Center</a>, if you don't have QC you can use QTP's automation model from a <code>vbs</code> file. The documentation for this is available in <code>Start -> Programs -> QuickTest Professional -> Documentation -> Automation Object Model Reference</code></p>
http://stackoverflow.com/questions/1155389/c0x-concepts-are-gone-which-other-features-should-go-too/1157486#11574863Answer by Motti for C++0X Concepts are gone. Which other features should go too?Motti2009-07-21T05:55:36Z2009-10-01T07:59:46Z<p>There are two things I think should be added to C++0x, I've thought of both these myself and then found that others have suggested them before but it doesn't seem like they're going to happen.</p>
<p><strong>1. Defaulting Move Constructors and Move Assignment Operators</strong></p>
<p>Writing a move constructor is a manual and error prone activity, if a member is added it must be added to the move constructor and assignment operators and <code>std::move</code> must be used religiously. That's why I think <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2583.html" rel="nofollow">these functions should be defaultable</a>.</p>
<pre><code>movable(movable&&) = default;
movable& operator=(movable&&) = default;
</code></pre>
<p><strong>Edit (2009-10-01):</strong> Looks like this is <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2953.html" rel="nofollow">going to happen</a> after all.</p>
<p><strong>2. Override Type Deduction for Expression Templates</strong></p>
<p><a href="http://en.wikibooks.org/wiki/More%5FC%2B%2B%5FIdioms/Expression-template" rel="nofollow">Expression templates</a> often define types that should not be used directly, a case in point is the <a href="http://www.google.com/codesearch/p?hl=en&sa=N&cd=3&ct=rc#DYZOSKwgu2A/trunk/Concordia/Programming/c++/INCLUDE/vector.h&q=vector%3Cbool%3E&l=551" rel="nofollow">return value of <code>std::vector<bool> operator[](size_type n)</code></a>, if <code>auto</code> or <code>decltype</code> are used on this kind of object unexpected behaviour may ensue.
Therefore a <a href="http://www.cpptalk.net/expression-templates-challenge-container-of-various-types-vt12179.html" rel="nofollow">type should be able to say what type it should be deduced to be</a> (or prevent deduction using <code>= delete</code> syntax).</p>
<p>Example for vector addition.</p>
<pre><code>// lazy evaluation of vector addition
template<typename T, class V1, class V2>
class vector_add {
V1& lhs_;
V2& rhs_;
public:
T operator[](size_t n) const
{ return lhs_[n] + rhs_[n]; }
// If used by auto or decltype perform eager creation of vector
std::vector<T> operator auto() const
{
if (lhs_.size() != rhs_.size())
throw std::exception("Vectors aren't same size");
std::vector<T> vec;
vec.reserve(lhs_.size());
for (int i = 0; i < lhs_.size(); ++i)
vec.push_back(lhs_[i] + rhs_[i]);
return vec;
}
</code></pre>
http://stackoverflow.com/questions/194464/have-you-ever-crashed-the-compiler7Have you ever crashed the compiler?Motti2008-10-11T19:19:01Z2009-09-24T17:50:42Z
<p>Everyone (at least everyone who uses a compiled language) has faced compilation errors but how many times do you get to actually crash the compiler? </p>
<p>I've had my fair share of <strong>"internal compiler errors"</strong> but most went away just by re-compiling. Do you have a (minimal) piece of code that crashes the compiler?</p>
http://stackoverflow.com/questions/1936013/how-can-i-create-a-stdvector-with-64-bit-indexes/1936057#1936057Comment by Motti on How can I create a std::vector with 64 bit indexes?Motti2009-12-20T14:58:17Z2009-12-20T14:58:17ZLooks interesting...http://stackoverflow.com/questions/1936013/how-can-i-create-a-stdvector-with-64-bit-indexes/1936020#1936020Comment by Motti on How can I create a std::vector with 64 bit indexes?Motti2009-12-20T14:56:06Z2009-12-20T14:56:06Z<code>vector::size_type</code> is <code>typedef`ed to `allocator::size_type</code> at least in visual studio. Looking at the standard I now see 23.1 that <code>size_type</code> is implementation defined.http://stackoverflow.com/questions/1907012/which-stl-containers-require-the-use-of-cadapt/1908140#1908140Comment by Motti on Which STL containers require the use of CAdapt?Motti2009-12-16T08:58:12Z2009-12-16T08:58:12ZIs <code>&reinterpret_cast<char&></code> well defined on any object? http://stackoverflow.com/questions/1877571/what-is-your-favorite-c0x-sample/1879646#1879646Comment by Motti on What is your favorite "C++0x" sample?Motti2009-12-10T14:21:49Z2009-12-10T14:21:49ZShouldn't the semi-colon be a colon?http://stackoverflow.com/questions/1821906/why-doesnt-com-use-a-static-empty-bstr/1822013#1822013Comment by Motti on Why doesn't COM use a static empty BSTR?Motti2009-12-01T09:42:32Z2009-12-01T09:42:32ZWhen I reallocate an empty BSTR (created with <code>SysAllocString(L"")</code>) I always get a new pointer (even when calling <code>SysReAllocString(&bs, L"")</code>) - This happens on 32 bit Vistahttp://stackoverflow.com/questions/1821906/why-doesnt-com-use-a-static-empty-bstr/1822013#1822013Comment by Motti on Why doesn't COM use a static empty BSTR?Motti2009-11-30T20:08:02Z2009-11-30T20:08:02ZBut <code>SysReAllocString</code> creates a new pointer so the empty string is still immutable, you just allocate a new string which is big enough.http://stackoverflow.com/questions/1808934/dynamically-building-a-url-in-qtpComment by Motti on Dynamically building a URL in QTPMotti2009-11-28T19:56:15Z2009-11-28T19:56:15ZHeaven forbid you read the docs! ;o)http://stackoverflow.com/questions/1808934/dynamically-building-a-url-in-qtp/1809724#1809724Comment by Motti on Dynamically building a URL in QTPMotti2009-11-28T19:55:35Z2009-11-28T19:55:35ZGreat answer, the only thing is I think that QTP anchors the beginning and end of properties so you may have to use <code>"id:=.*target_id.*"</code> instead of Albert's suggestion.http://stackoverflow.com/questions/1791447/copying-between-variant-and-variantt/1795071#1795071Comment by Motti on Copying between VARIANT and _variant_tMotti2009-11-26T13:22:09Z2009-11-26T13:22:09ZYou'll probably get undefined behaviour in any case due to double deletion (in case of <code>BSTR</code>) and dangling pointers (in case of <code>IUnknown</code>) when both the safearray and the <code>_varaint_t</code> are destroyed.http://stackoverflow.com/questions/1778816/how-to-access-firefox-cache-from-webdriver/1781082#1781082Comment by Motti on How to access Firefox cache from webdriver?Motti2009-11-23T07:00:35Z2009-11-23T07:00:35Z
If you look in your <code>about:cache</code> you'll see that some cache items are on disk (<i>Disk cache device</i>) and some are in memory (<i>Memory cache device</i>) those in memory don't have a path associated with them and the OP wants to know how he can access them.http://stackoverflow.com/questions/1778491/how-does-one-return-a-local-ccomsafearray-to-a-lpsafearray-output-parameterComment by Motti on How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?Motti2009-11-23T06:55:34Z2009-11-23T06:55:34ZThis happens for both VS8 (2005) and VS9 (2008)http://stackoverflow.com/questions/1778491/how-does-one-return-a-local-ccomsafearray-to-a-lpsafearray-output-parameter/1778558#1778558Comment by Motti on How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?Motti2009-11-22T12:42:25Z2009-11-22T12:42:25ZSurely this isn't the way <code>CComSafeArray</code> is supposed to be used, it goes against the grain of <code>CComVariant</code> and <code>CComBSTR</code>.http://stackoverflow.com/questions/1758608/is-there-an-non-short-circuited-logical-and-in-c/1758826#1758826Comment by Motti on Is there an Non-Short circuited logical "and" in C++?Motti2009-11-19T06:37:49Z2009-11-19T06:37:49ZThis is why I think it's a design bug allowing overloading of the <code>&&</code> and <code>||</code> operators.http://stackoverflow.com/questions/1017251/if-findnexturlcacheentry-fails-how-can-i-retrieve-info-of-the-failed-entry-agaComment by Motti on If FindNextUrlCacheEntry() fails, how can I retrieve info of the failed entry again?Motti2009-11-18T14:09:49Z2009-11-18T14:09:49ZI'm seeing the same problem, is there a maximal size I can allocate in order to avoid <code>ERROR_INSUFFICIENT_BUFFER</code>?http://stackoverflow.com/questions/1745048/is-there-a-simple-way-to-create-a-unique-integer-key-from-a-two-integer-composite/1745064#1745064Comment by Motti on Is there a simple way to create a unique integer key from a two-integer composite key?Motti2009-11-17T19:16:32Z2009-11-17T19:16:32Z+1 even though if <code>key1</code> is a 32 bit integer then <code>key1 << 32 == 0</code> (you should cast it to 64 bits first)