Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
72 views

Clarification on Operators

I've been reading up on class operators and came across the following example: class Array { public: int& operator[] (unsigned i) { if (i > 99) error(); return data[i]; } private: ...
4
votes
6answers
420 views

(C++ header file question) Can someone help clairify how header files work?

I've been working with C++ for a good couple of weeks now, but the mechanism behind header files (or the linker I suppose?) confuses the heck out of me. I've gotten in the habit of creating a "main.h" ...
2
votes
2answers
611 views

MEF: SatisfyImportsOnce vs ComposeParts

Can someone please explain the difference between SatisfyImportsOnce and ComposeParts and why one would work where the other doesn't? Specifically I have a MVC Web application that I am using MEF in. ...
2
votes
4answers
242 views

In C# when is a value/object copied and when is its reference copied?

I keep getting the same issue over and over again where an object I want to reference is copied or where an object I want to copy is referenced. This happens when I use the = operator. For example, ...
2
votes
1answer
1k views

Webkit canvas drawImage() and canvas not-integer scale factor bug?

I've got a problem with canvas context drawImage() method if an image is drawn on a canvas that already has not-integer scale factor. It seems that such images are clipped in a weird way (sometimes ...
1
vote
2answers
43 views

Need for thread safety when using a SinglethreadExecutor

This is more of a clarification than a question. I was working on a Java EE app that took in user requests from a UI and then keyed off a lon workflow asynchronously for each of these requests using ...
1
vote
7answers
76 views

Is a primitive type an object?

The start of the Reflection tutorial @ the Java Tutorials states: Every object is either a reference or primitive type. Apart from the types used to box primitive types, when and how is a ...
1
vote
1answer
54 views

MBProgressHUD naming convention clarification

I came across a very nice API MBProgressHUD, however when I was reading the documentation in the header MBProgressHUD.h I got confused since the doc says that - (id)initWithWindow:(UIWindow *)window; ...
1
vote
1answer
51 views

What does “@” do when using NSLog function in Objective-C?

Why do we need to put the "@" before the quotation mark when using NSLog(). Thank you.
1
vote
4answers
534 views

global extern const clarification

Is declaring extern const or just extern the same thing in a header file? Also will both give external linkage? globals.cpp #include <string> extern const std::string foo = "bar"; globals.h ...
1
vote
3answers
163 views

C++ reference variable clarification

I think most would be surprised about the topic again, However I am referring to a book "C++ Common Knowledge: Essential Intermediate Programming" written by "Stephen C. Dewhurst". In the book, he ...
1
vote
2answers
293 views

Python urlparse, correct or incorrect?

Python's urlparse function parses an url into six components (scheme, netloc, path and others stuff) Now I've found that parsing "example.com/path/file.ext" return no netloc but a path ...
1
vote
2answers
462 views

Question about updating multiple tables with LINQ and ASP.NET MVC

Just a quick one really, I'm just looking for a bit of clarification. I'm looking to update multiple tables from one "Create" action, before I try it, I was just wondering if it's possible to simply ...
0
votes
1answer
101 views

jQuery replaceWith() documentation question

I am working through the jQuery documentation and found a piece of a replaceWith() example (the last example from http://api.jquery.com/replaceWith/) that I don't fully understand. I will post a link ...
0
votes
1answer
94 views

EventLog.Source and EventLog.Delete(logName): Are “Source” and “logName” referring to the same property?

In reading about creating custom event logs, I came across something that is somewhat confusing. When creating a custom event log, one property you need to set is the Source, which apparently is any ...
0
votes
3answers
121 views

C++ Function clarification

Given: x = MyFunc(2); My understanding: The variable x is assigned to the function MyFunc(2). First, MyFunc( ) is called. When it returns, its return value if any, is assigned to x.?
0
votes
2answers
139 views

Working with DefaultOrEmpty in LINQ

Incase of Default or Empty i want to supply some value string[] str = {string.Empty, "hello", "world" }; var select = str.Select(s => s).DefaultIfEmpty("nodata"); GridView1.DataSource = Select; ...