' P '

whatever I will forget

Entries from 2020-08-03 to 1 day

php 小クラスから親クラスのconstructorを呼び出すには

php

継承はJavaと同じ書き方でextendsだった parent::_constructと記述すればよい。 親クラスのコンストラクタを呼び出すには class Parent { protected name; public function __construct($name) { $this->name = $name; } } class Child extends Parent { pri…

php クラスプロパティの追加と使用について

php

うーんここらへんはphp独自か クラスプロパティの追加 class Sample { public static count = 0; private number; public function __construct() { $this->number = 10; } } クラスプロパティの使用方法 echo Sample::$count;

mod系

C - Repsept 一応解説でもCにしてはムズイとなってたのでよしとする(?)ダメだけど、、 下記のmodの世界での規則系に気付けるかどうか。 その世界でもn*10+7してmod kした値は単純にn%kした答えと同じになる 単純にn%kした場合、ループの最大回数を何にし…