Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
10answers
11k views

Thread safe lazy construction of a singleton in C++

Is there a way to implement a singleton object in C++ that is: Lazily constructed in a thread safe manner (two threads might simultaneously be the first user of the singleton - it should still only ...
11
votes
2answers
150 views

Referencing the same variable that you're declaring

I've seen the following type mistake a couple of times while working with C++ code: QString str = str.toUpper(); This can be a fairly easy mistake to make and yet it compiles and executes ...
6
votes
5answers
130 views

Other way to prohibit a certain C++ class construction except than declaring the constructor private?

Say I have a class with some const reference member variable and I would like to forbid a certain type of construction. So I would declare the according constructor private. Of course, a constructor ...
6
votes
10answers
4k views

Programmatic HTMLDocument generation using Java

Does anyone know how to generate an HTMLDocument object programmatically in Java without resorting to generating a String externally and then using HTMLEditorKit#read to parse it? Two reasons I ask: ...
5
votes
4answers
156 views

Giant switch statement for constructors

I have a container which holds a bunch of pointers to a base class, and a function which takes some input and returns a class which is a subclass of the base class. Which subclass it returns depends ...
4
votes
4answers
1k views

Is Object constructor called when creating an array in Java?

In Java, an array IS AN Object. My question is... is an Object constructor called when new arrays is being created? We would like to use this fact to instrument Object constructor with some extra ...
4
votes
10answers
798 views

Emptying a C++ object

Often I add an Empty method to my C++ objects to clear the internal state using code similar to the following. class Foo { private: int n_; std::string str_; public: Foo() : n_(1234), ...
3
votes
4answers
308 views

Understanding the efficiency of an std::string

I'm trying to learn a little bit more about c++ strings. consider const char* cstring = "hello"; std::string string(cstring); and std::string string("hello"); Am I correct in assuming that both ...
3
votes
3answers
156 views

Hard-coding Fonts in DotNET

I've run into problems on numerous occasions of users not having one of the Windows Core fonts installed on their machine (Courier New, Comic Sans MS, Arial for example). Whenever I try to construct ...
2
votes
5answers
169 views

Abstract syntax tree construction and traversal

I am unclear on the structure of abstract syntax trees. To go "down (forward)" in the source of the program that the AST represents, do you go right on the very top node, or do you go down? For ...
2
votes
2answers
98 views

In place constrution of member variable via constructor

Take the following class: template <typename TPayload> class Message { public: Message(const TPayload& payload) : m_header(sizeof(TPayload)), ...
2
votes
3answers
1k views

jquery widget, _create or _init

Some jquery plugin extend widget use _create method, while others use _init method, can someone explain the differences between the two? Also any guidance on when it is better to extend widget or ...
2
votes
1answer
241 views

Rails Under Construction Page

I know this may seem trivial to some, other won't see the point, however - for me this would be great: I am trying to work out how to quickly and efficiently commit updates to my Rails app, switch to ...
2
votes
5answers
140 views

When is an object in Javascript constructed?

Consider the following Javascript function (1): function setData(domElement) { domElement.myDataProperty = { 'suppose': 'this', 'object': 'is', 'static': 'and', 'pretty': 'big' }; ...
1
vote
2answers
83 views

C++, weird “candidate expects 1 argument, 0 provided” in constructor

I'm making a simple threaded server application in C++, thing is, I use libconfig++ to parse my configuration files. Well, libconfig doesn't support multithreading, thus I'm using two wrapper classes ...
1
vote
5answers
59 views

In-explicit constructing in operator overloading?

Is it possible use in-explicit constructing with operators ? Just like in this example (which does of course not work): class myFoo { public: double x, y; myFoo(double, double); ...
1
vote
2answers
265 views

Prolog; if and (stopping) recursion

In trying to better understand prolog, lists and recursion as a whole I'm working my way through various simple tasks I've assigned to myself. Among others is removing double entries from a list. ...
1
vote
2answers
94 views

Cross source file template instantiation and use

I have a class with several template member functions that I would like to distribute among several source files to speed up compilation times. (The templates are implementation details and are not ...
1
vote
3answers
640 views

Best way to represent Bit Arrays in C#?

I am currently building a DHCPMessage class in c#. RFC is available here : http://www.faqs.org/rfcs/rfc2131.html Pseudo public object DHCPMessage { bool[8] op; bool[8] htype; bool[8] ...
1
vote
2answers
171 views

How does a view work (MVC)?

I'm working on a web-app without a framework right now, and I'm trying to structure it as a MVC app. The problem is, there are some technical aspects of MVC apps that escape me. Primarily, how ...
1
vote
2answers
709 views

Under Construction page For Website Without Redirect

I wanted to know if there is some way to change something simple, such as a htaccess file, a js file, or a php file, and then all of the webpages on my site will show an under construction page. I do ...
1
vote
1answer
63 views

accessing third-party ruby library module in code? is this the right way on windows?

I needed a little script to read data out of windows-style .ini files. Searching my windows machine I found inifile.rb in this path: C:\ruby\lib\ruby\site_ruby\1.8\vr\contrib\ it seems unnatural ...
0
votes
1answer
34 views

url construction htaccess

Lets say I have a link to one of my page that looks like: mysite.com/48YSWD96, I need it to look like: mysite.com/?d=48YSWD96. How do I achieve this? Can I achieve this by modifying my htaccess file? ...
0
votes
4answers
40 views

“this” reference escaping during construction?

If I do the following, final class FooButton extends JButton{ FooButton(){ super("Foo"); addActionListener(new ActionListener(){ @Override public void ...
0
votes
3answers
35 views

Mark constructor as __explicitly__ requiring an object type

I have a constructor that accepts an object of type Material: SomeClass::SomeClass( const Material& mat ) ; However, Material allows construction by a Vector: Material::Material( const ...
0
votes
2answers
32 views

Constructing numpy array using tile

My question is: How can I get b from a using tile? a = np.array([[1,2,-6],[-4,5,6],[10,8,-1]]) b = np.array([ [[1,2,-6],[1,2,-6],[1,2,-6]], [[-4,5,6],[-4,5,6],[-4,5,6]], ...
0
votes
2answers
57 views

Delay true base class construction with placement new

I'm asking if (and why) the following approach is a) legal and b) moral. I'm asking with emphasis on C++03, but notes on C++11 are welcome, too. The idea is to prevent derived classes that could ...
0
votes
2answers
68 views

Javascript string construction by concatenation?

Exploring Javascript (and coming from the Java world). I have the following line of code in a script: if (jQuery) { document.getElementById("BOTTOM_MID").innerHTML = "JQuery Loaded - " ...
0
votes
1answer
79 views

concatenating android canvas

I am looking for an example for constructing a canvas with multiple bitmaps(kind of in a grid pattern). would I need to create a single bitmap that holds all of the other bitmaps on top or can I just ...
0
votes
1answer
77 views

php how to ensure that parent class gets constructed

What is the best way to ensure that parent class allways gets constructed, since we can easily override constructors without having to call them at all. Also: is this bad practice? abstract class A ...
0
votes
2answers
107 views

Construct ImmutableSortedSet without warnings

I want construct ImmutableSortedSet. I wrote code smt like: Set<String> obj = new HashSet<String>(); Comparator<String> myComparator = new Comparator<String>(){ @Override ...
0
votes
7answers
234 views

The ** idiom in C++ for object construction

In a lot of C++ API'S (COM-based ones spring to mind) that make something for you, the pointer to the object that is constructed is usually required as a ** pointer (and the function will construct ...
0
votes
2answers
153 views

C++ referring to an object being constructed

In C++ I have a reference to an object that wants to point back to its owner, but I can't set the pointer during the containing class' construction because its not done constructing. So I'm trying to ...
0
votes
4answers
214 views

Why isn't there a Windows.Forms like program for C++ (is there?)

I don't think there is any program like VS Windows.Forms for C++. Now I know that "Windows.Forms" are in themselves a C# "thing", but it eludes me why no one has put together a similar graphical ...
0
votes
5answers
201 views

Construct object from LINQ using same fields of another query

That's example SQL create view v_join as select m.* , d.oneDetail from master m, detail d where m.key = d.key LINQ var view = from v in dc.v_join select new { Master = ???? /// that is an ...
0
votes
3answers
501 views

How to specify which columns can be returned from linq to sql query

I'm trying to only return a few columns from a linq to sql query but if I do, it throws the exception: Explicit construction of entity type 'InVision.Data.Employee' in query is not allowed Here's ...
-1
votes
0answers
9 views

Feature extraction from tcpdump file

I want to extract the features from tcpdump dataset available on Lincolon Laboratory site of MIT. I want to construct dataset like KDD Cup99 from tcpdump file. I have installed BRO IDS to construct ...