The built-in-types tag has no wiki summary.
1
vote
1answer
45 views
Custom comparison functions for built-in types in Python
I am using Python's built-in sets to hold objects of a class I have defined. For this class, I defined __eq__, __ne__, and __hash__ so that I can compare objects by my custom comparison functions. ...
-2
votes
1answer
77 views
Can `dict` replace `list` when memory is not a concern? [closed]
I could represent any list as a dictionary whose keys are the valid list indices, and whose values are the list's items. E.g., [5, 6, 'a'] would be represented as {0:5, 1:6, 2:'a'}.
In terms of ...
0
votes
1answer
21 views
Case of names of built-in JavaScript types
In JavaScript, typeof 0 gives 'number' not 'Number', but instanceof 0 Number.
Would it be accurate to say the canonical names of the built-in types are capitalized, and the lowercase return value of ...
3
votes
2answers
150 views
When do fundamental C++ types have an unknown initial value?
When will a fundamental C++ type, such as int or float, have an unknown initial value?
How does the type of memory allocation factor in, if at all? What about the declaration? What if it's a member ...
2
votes
4answers
138 views
When are C++ implicit types initialized to 0?
I grew some doubts after discussing this with colleagues...
As the title asks, when can it be assumed that built-in types will be initialized to 0 instead of an unknown value?
Do the rules vary ...
3
votes
1answer
180 views
Do built-in types have move semantics?
Consider this code:
#include <iostream>
using namespace std;
void Func(int&& i) {
++i;
}
int main() {
int num = 1234;
cout << "Before: " << num << endl;
...
1
vote
3answers
164 views
How to make python class support item assignment?
While looking over some code in Think Complexity, I noticed their Graph class assigning values to itself. I've copied a few important lines from that class and written an example class, ObjectChild, ...
0
votes
0answers
592 views
sql71501 sql parameter has unresolved reference to build-in type
from VS2012 I created a Database project and created ad custom type
CREATE TYPE dbo.TypeProductCategoryTable AS TABLE
( ProductID int, CategoryID int )
Now when I write stored procedure with ...
6
votes
1answer
310 views
Why no partial function type literal?
I wonder why there doesn't exist a literal for partial function types. I have to write
val pf: PartialFunction[Int, String] = {
case 5 => "five"
}
where an literal like :=> would be ...
1
vote
1answer
195 views
python override built-in classes, in particular, dictionary class
I've never really like the way the dictionary class is converted into a string so I wrote a subclass which overrides the repr method (this method uses tabs to representing the level of nesting in the ...
0
votes
1answer
179 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 ...
1
vote
5answers
231 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?
72
votes
5answers
2k 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 ...
13
votes
7answers
344 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 ...
19
votes
3answers
427 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 ...
1
vote
7answers
404 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. ...
3
votes
4answers
251 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?
...
0
votes
3answers
267 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 ...
5
votes
3answers
380 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?
1
vote
9answers
2k views
1
vote
3answers
222 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 ...
0
votes
3answers
147 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 ...
5
votes
1answer
266 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 ...
3
votes
2answers
423 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 ...
8
votes
2answers
1k 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 ...
2
votes
3answers
723 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 ...
2
votes
5answers
596 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 ...
20
votes
7answers
8k views
Does the default constructor initialize built-in types
Does the default constructor (created by the compiler) initialize built-in-types?
22
votes
4answers
5k 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
2
votes
3answers
437 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 ...
4
votes
2answers
1k 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
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.
6
votes
2answers
1k 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;
...
