Top "Base" questions

A number whose powers are used to represent other numbers (e.g. base 10 = decimal representation)

Django project base template

Can I create a base template for my project which all apps can draw from? Or do I have to …

django templates project base
Base URL - How to call the home link

Here an example of my base URL <base href="http://subdomain.domain.com/folder/" /> I would like to …

html url base
How do I set a page's base href in Javascript?

I want to set a page's base href attribute in Javascript based off of the current hostname. I have generated …

javascript href base
C#: How do I call a static method of a base class from a static method of a derived class?

In C#, I have base class Product and derived class Widget. Product contains a static method MyMethod(). I want to …

c# inheritance static base derived-class
Base class undefined

My code below generates the error 'WorldObject': [Base class undefined (translated from german)] Why is this? Here is the code …

c++ class undefined base
Python Comparison of byte literals

The following question arose because I was trying to use bytes strings as dictionary keys and bytes values that I …

python comparison byte endianness base
C# base() constructor order

Possible Duplicate: C# constructor execution order class Foo { public int abc; Foo() { abc = 3; } } class Bar : Foo { Bar() : base() { abc = 2; } } In …

c# constructor base
implementing abstract methods/classes in java

Can I implement abstract methods in an abstract base class A in java? If the answer is yes and there …

java methods abstraction base derived
Redefining vs. Overriding in C++

I am confused about the differences between redefining and overriding functions in derived classes. I know that - In C++, …

c++ class inheritance base derived
access base class variable in derived class

class Program { static void Main(string[] args) { baseClass obj = new baseClass(); obj.intF = 5; obj.intS = 4; child obj1 = new child(); Console.…

c# variables base derived