Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

36
votes
17answers
10k views

What OSGi Container Do You Recommend?

For the purposes of building a service framework that works quietly behind the scenes in the JVM, logically separated from whatever the primary application running is, it seems like OSGi really lends ...
31
votes
4answers
635 views

Why use non-member begin and end functions in C++11?

Every standard container has a begin and end function for returning iterators for that container. However, C++11 has apparently introduced free functions called begin and end which call the begin and ...
26
votes
13answers
3k views

To STL or !STL, that is the question

Unquestionably, I would choose to use the STL for most C++ programming projects. The question was presented to me recently however, "Are there any cases where you wouldn't use the STL?"... The more I ...
22
votes
6answers
7k views

Container Class / Library for C

Does anyone know of any C container libraries? I am looking for something which gives standard implementations of linked lists, arrays, hash tables etc, much in the same way as the C++ STL does. Key ...
19
votes
2answers
3k views

Why does std::stack use std::deque by default?

Since the only operations required for a container to be used in a stack are: back() push_back() pop_back() Why is the default container for it a deque instead of a vector? Don't deque ...
17
votes
3answers
456 views

why is unbounded_array more efficient than vector?

It says here that The unbounded array is similar to a std::vector in that in can grow in size beyond any fixed bound. However unbounded_array is aimed at optimal performance. Therefore ...
17
votes
13answers
2k views

Why STL containers are preferred over MFC containers?

Previously I used to use MFC collection classes such CArray and CMap. After a while I switched to STL containers and have been using them for a while. Although I find STL much better, I am unable to ...
17
votes
2answers
7k views

What are the Complexity guarantees of the standard containers?

Apparently ;-) the standard containers provide some form of guarantees. What type of guarantees and what exactly are the differences between the different types of container? Working from the SGI ...
17
votes
4answers
2k views

Generic iterator

I am trying to find a generic way of accessing a set of containers. I have a standard vector and list in addition to another custom list. The custom list defines an iterator; class Iterator: public ...
16
votes
7answers
8k views

Copy map values to vector in STL

Working my way through Effective STL at the moment. Item 5 suggests that it's usually preferable to use range member functions to their single element counterparts. I currently wish to copy all the ...
16
votes
5answers
2k views

In which scenario do I use a particular STL Container?

Greetings :) I've been reading up on STL containers in my book on C++, specifically the section on the STL and it's containers. Now I do understand each and every one of them have their own specific ...
15
votes
7answers
2k views

How can I write a generic container class that implements a given interface in C#?

Context: .NET 3.5, VS2008. I'm not sure about the title of this question, so feel free to comment about the title, too :-) Here's the scenario: I have several classes, say Foo and Bar, all of them ...
15
votes
9answers
2k views

'Multipurpose' linked list implementation in pure C

( if you get easily bored reading long posts, you can focus on the bold parts ) Hello all! This is not exactly a technical question, since I know C kind of enough to do the things I need to (I mean, ...
14
votes
7answers
3k views

Is there a sorted collection type in .NET?

I'm looking for a container that keeps all its items in order. I looked at SortedList, but that requires a separate key, and does not allow duplicate keys. I could also just use an unsorted ...
12
votes
2answers
129 views

Associated types and container elements

I think I may have asked this on Haskell-Cafe at some point, but damned if I can find the answer now... So I'm asking it again here, so hopefully in future I can find the answer! Haskell is fantastic ...
12
votes
3answers
708 views

Do STL iterators guarantee validity after collection was changed?

Lets say I have some kind of collection an I obtained an iterator for the beginning of it. Now lets say I modified the collection. Can I still use the iterator safely? (regardless of the type of the ...
12
votes
2answers
2k views

Abstract factory pattern on top of IoC?

I have decided to use IoC principles on a bigger project. However, i would like to get something straight that's been bothering me for a long time. The conclusion that i have come up with is that an ...
11
votes
4answers
762 views

C++0x “move from” container

In C++0x, we get an efficiency boost concerning containers with std::move: SomeExpensiveType x = /* ... */; vec.push_back(std::move(x)); But I can't find anything going the other way. What I mean ...
11
votes
2answers
3k views

Best string container: StringCollection, Collection<string>, List<string>, ArrayList, ..?

What is the most suitable container just for strings holding in some array with non-predetermined upper boundary, which length is unknown on it's creation. For simple code like: var list = new ...
10
votes
3answers
261 views

Is there a random access container type that accepts a prefilled & preallocated buffer?

I'm about to write something myself since I didn't find what I was looking for, but figured I should ask the crowd before diving in. Is there a boost or stl random access container type that allows ...
10
votes
9answers
564 views

When do you prefer using std::list<T> instead of std::vector<T>?

I've never used std::list<T> myself. I was wondering when people use it when we already have std::vector<T> which is just like arrays with contiguous memory. std::vector seems like a ...
10
votes
11answers
743 views

What you think about throwing an exception for not found in C++?

I know most people think that as a bad practice but when you are trying to make your class public interface only work with references, keeping pointers inside and only when necessary, I think there is ...
10
votes
3answers
2k views

Pointers and containers

We all know that RAW pointers need to be wrapped in some form of smart pointer to get Exception safe memory management. But when it comes to containers of pointers the issue becomes more thorny. The ...
9
votes
6answers
306 views

C++: is it safe to work with std::vectors as if they were arrays?

I need to have a fixed-size array of elements and to call on them functions that require to know about how they're placed in memory, in particular: functions like glVertexPointer, that needs to know ...
9
votes
3answers
216 views

Which STL container for ordered data with key-based access?

Let's say I have a collection of Person objects, each of which looks like this: class Person { string Name; string UniqueID; } Now, the objects must be stored in a container which allows me to ...
9
votes
3answers
2k views

size_t vs container::size_type

I'm wondering if there's a difference in using size_t and container::size_type? What I understand is size_t is more generic and can be used for any size_types.. Is container::size_type more ...
9
votes
4answers
8k views

What does this mean in Prism/Unity: Container.Resolve<ShellPresenter>()

(from the StockTraderRIBootstrapper.cs file in the Prism V2 StockTrader example app) What is the difference between this: ShellPresenter presenter = new ShellPresenter(); and this: ShellPresenter ...
8
votes
3answers
111 views

Why don't the push_back in vector<> and list<> containers return the reference to the inserted element?

I realize I can get the iterator reference by calling back() but why not return it with push_back() as well? Is it for performance reasons? Or is it due to exception safety (similar to why pop_back() ...
8
votes
2answers
501 views

General use cases for C++ containers

What are the general use cases for the C++ standard library containers? bitset deque list map multimap multiset priority_queue queue set stack vector For example, a map is generally better for a ...
8
votes
1answer
80 views

Is there a standard way to convert from container<Type1> to container<Type2>?

I have two classes A and B, and an implicit conversion operator exists to go from one to the other, so that: A a; B b; b = a; // Works Is there a standard way to convert a std::list<A> to a ...
8
votes
3answers
1k views

What is an iterator's default value?

For any STL container that I'm using, if I declare an iterator (of this particular container type) using the iterator's default constructor, what will the iterator be initialised to? For example, I ...
8
votes
7answers
427 views

Caching the end iterator - Good idea or Bad Idea?

Generally speaking is it a good idea to cache an end iterator (specifically STL containers) for efficiency and speed purposes? such as in the following bit of code: std::vector<int> vint; const ...
8
votes
3answers
429 views

Can 'iterator' type just subclass 'const_iterator'?

After another question about iterators I'm having some doubts about custom containers. In my container, iterator is a subclass of const_iterator, so that I get conversion from non-const to const "for ...
8
votes
3answers
690 views

Are Python built-in container thread-safe?

I would like to know if the python built-in container (list, vector, set...) are thread-safe ? Or do I need to implement a locking/unlocking environment for my shared variable. Thanks in advance
8
votes
3answers
581 views

STL map onto itself?

I'd like to create a std::map that contains a std::vector of iterators into itself, to implement a simple adjacency list-based graph structure. However, the type declaration has me stumped: it ...
8
votes
4answers
3k views

Mapping between stl C++ and C# containers

Can someone point out a good mapping between the usual C++ STL containers such as vector, list, map, set, multimap... and the C# generic containers? I'm used to the former ones and somehow I've ...
8
votes
7answers
1k views

C++ STL: Which method of iteration over a STL container is better?

This may seem frivolous to some of you, but which of the following 2 methods of iteration over a STL container is better? Why? class Elem; typedef vector<Elem> ElemVec; ElemVec elemVec; // ...
7
votes
4answers
329 views

How to store a bit-array in C++?

What's the best way to store a bit array in C++ (no Boost, just standard containers), representing, for example, a volume allocation bitmap? I thought std::vector<bool> was a great idea, but ...
7
votes
6answers
249 views

“CopyConstructible” requirement for C++ stl container element

Regarding to the requirement for C++ stl container element, the standard says: the element type should be CopyConstructible, and there is a table for CopyConstructible requirements. Also by various ...
7
votes
2answers
90 views

How to run multiple Perl installs on one machine?

Is it possible to run multiple installs of Perl (in "containers") on one machine? Reason is that I have different Perl-based server side web applications and wish to schedule updates to them ...
7
votes
8answers
503 views

C++ STL containers

Different STL containers like vector, stack, set, queue, etc support different access methods on them. If you are coding for example in Notepad++ or vim, you have to continuously refer to the ...
7
votes
4answers
3k views

Available Servlet 3.0 implementations?

Which implementations of the Servlet 3.0 specification are available (or at least in beta) besides GlassFish?
6
votes
3answers
59 views

std, boost or other widespread implementation of a hash table container with implicit keys

If I understand it correctly, both std::map and std::unordered_map store keys explicitely (store pairs of keys / values). Is there some other ready to use container (std, boost or other widespread ...
6
votes
2answers
103 views

Complexity requirements for std::deque::push_back/front

As a result of this question from a few days ago there are a few things that have been bugging me about the complexity requirements for std::deque::push_back/push_front vs the actual std::deque ...
6
votes
3answers
109 views

what is the optimal data structure for a pool container?

At the moment i use the STL vector container template to put back and get the connections. 1) on get, a connection is returned and "erase()"d from pool vector. 2) on release, the connection is ...
6
votes
1answer
256 views

Are begin(container) and end(container) standardized?

Are the non-member function templates begin(container) and end(container) part of C++0x? If so, in which header file do they live?
6
votes
5answers
315 views

C#, fire event of container

I have a MyButton class that inherits from Button. On this class I have placed several other controls (Labels, Progessbar). The problem with this is that the controls on the Button make it impossible ...
6
votes
7answers
332 views

Wrapping Containers to Maintain Consistency

I'm wondering if it's a good idea to wrap C++ STL containers to maintain consistency and being able to swap the implementation without modifying client code. For example, in a project we use ...
6
votes
3answers
115 views

C++ designing containers and managing list return

I am developing a class which acts as a container for another class. In the container class I must implement a method to get all elements in the collection. My container class uses a std::deque. ...
6
votes
6answers
1k views

Comparing OpenEjb and Glassfish

Dear all, can we replace Glassfish with Tomcat/OpenEJB for lighter applications? What is the performance of OpenEJB comparing to glassfish as EJB container. What is the restrictions of OpenEJB ...

1 2 3 4 5 15