Tagged Questions
The built-in-types tag has no wiki summary.
61
votes
5answers
1k views
How is “int* ptr = int()” value initialization not illegal?
The following code (taken from here):
int* ptr = int();
compiles in Visual C++ and value-initializes the pointer.
How is that possible? I mean int() yields an object of type int and I can't assign ...
18
votes
3answers
181 views
Subclassing builtin types in Python 2 and Python 3
When subclassing builtin types, I noticed a rather important difference between Python 2 and Python 3 in the return type of the methods of the built-in types. The following code illustrates this for ...
12
votes
7answers
174 views
How do I value-initialize a Type* pointer using Type()-like syntax?
Variables of built-in types can be value-initialized like this:
int var = int();
this way I get the default value of int without hardcoding the zero in my code.
However if I try to do similar ...
10
votes
7answers
3k views
Does the default constructor initialize built-in types
Does the default constructor (created by the compiler) initialize built-in-types?
6
votes
2answers
394 views
Can I add custom methods/attributes to built-in Python types?
For example—say I want to add a helloWorld() method to Python's dict type. Can I do this?
JavaScript has a prototype object that behaves this way. Maybe it's bad design and I should subclass ...
5
votes
4answers
188 views
Cannot assign the value of INT_MIN to a long long
signed long long value = -2147483648;
cout << ((signed long long)value);
outputs 2147483648 (no minus sign), why?
5
votes
1answer
123 views
Inheriting behaviours for set and frozenset seem to differ
Can someone explain the following behaviour:
class derivedset1(frozenset):
def __new__(cls,*args):
return frozenset.__new__(cls,args)
class derivedset2(set):
def ...
5
votes
4answers
1k views
What is the difference between isinstance('aaa', basestring) and isinstance('aaa', str)?
a='aaaa'
print isinstance(a, basestring)#true
print isinstance(a, str)#true
5
votes
2answers
846 views
Default construction of elements in a vector
While reading the answers to this question I got a doubt regarding the default construction of the objects in the vector. To test it I wrote the following test code:
struct Test
{
int m_n;
...
3
votes
4answers
156 views
Redefining Pythons builtin datatypes
Is it possible to redefine which object the brackets [] use?
I can subclass the list object, but how to I make the interpreter use my subclass in place of the buildin list object? Is it possible?
...
3
votes
2answers
112 views
problem subclassing builtin type
# Python 3
class Point(tuple):
def __init__(self, x, y):
super().__init__((x, y))
Point(2, 3)
would result in
TypeError: tuple() takes at most 1
argument (2 given)
Why? What ...
2
votes
5answers
407 views
How to default-initialize local variables of built-in types in C++?
How do I default-initialize a local variable of primitive type in C++? For example if a have a typedef:
typedef unsigned char boolean;//that's Microsoft RPC runtime typedef
I'd like to change the ...
2
votes
3answers
285 views
Do types in QT applications for different platforms have similar size?
I created an application for Windows in C++ using QT. If I want to port it to Linux or Mac OS, will sizeof(int) or sizeof(long) change? In other words, do types in QT applications for different ...
2
votes
2answers
564 views
Is there a function to check if an object is a builtin data type?
I would like to see if an object is a builtin data type in C#
I don't want to check against all of them if possible.
That is, I don't want to do this:
Object foo = 3;
Type ...
1
vote
5answers
197 views
What is the type of a builtin datatype in C and C++?
When we write int a;, it doesn't mean that we are creating an object of class int.
What does it mean?
What is the type of the datatype int in C and C++?
Which header file shows what it is?
1
vote
7answers
104 views
use type() information to cast values stored as strings
In my application I have generated a number of values (three columns, of type int, str and datetime, see example below) and these values are stored in a flat file as comma-separated strings. ...
1
vote
9answers
360 views
1
vote
3answers
148 views
0 initialization of C++ built-in types
suppose I have this struct (or class, my question applies to both):
struct builtin
{
int a;
int b;
builtin() : a(), b(0) { }
};
I know that both a and b will be initialized to 0 by ...
1
vote
3answers
367 views
subclassing float to force fixed point printing precision in python
[Python 3.1]
I'm following up on this answer:
class prettyfloat(float):
def __repr__(self):
return "%0.2f" % self
I know I need to keep track of my float literals (i.e., replace 3.0 with ...
1
vote
2answers
1k views
c#: copy variable to byte array
How do I copy a double, int, bool or other built-in type to a byte array in C#?
I need to do it to use the FileStream.Write() method.
0
votes
1answer
14 views
Merging maps in Freemarker
I'm unable to find any documentation on how to merge two hash maps. This is what I am trying to acheive
<select
<@render_attrs commonattrs.merge({"class":"select"}) /> > ....
<#macro ...
0
votes
3answers
96 views
Can the atomic builtins be used across multiple processes?
I'm getting back into C from .NET so please forgive my code, but I'm trying to implement the atomic builtin incrementer across an existing multi process program.
I wrote up a test program, and I ...
-1
votes
3answers
120 views
Python: Inheriting builtin types dict and list [closed]
I have always been confused and falling over the minute details while inheriting the builtin types in Python e.g. list and dict.
Can you please point to the tutorials and docs which give a ...